Tranquilo Prudencio, não dá para disponibilizar esse arquivo. Fiz o código da maneira abaixo e fucnionou, só que tive que colocar vários IF's! Queria uma ideia para simplificar! Mas está funcionando!
Obrigado pelo Retorno!
If Opt_Q01_Sim.Value = True Then
.Cells(indice, 16).Value = "SIM"
Else
If Opt_Q01_Nao.Value = True Then
.Cells(indice, 16).Value = "NÃO"
End If
End If
If Opt_Q02_Sim.Value = True Then
.Cells(indice, 17).Value = "SIM"
Else
If Opt_Q02_Nao.Value = True Then
.Cells(indice, 17).Value = "NÃO"
End If
End If
If Opt_Q03_Sim.Value = True Then
.Cells(indice, 18).Value = "SIM"
Else
If Opt_Q03_Nao.Value = True Then
.Cells(indice, 18).Value = "NÃO"
End If
End If
.Cells(indice, 19).Value = Cmb_Q04_Escolha
If Opt_Q05_Sim.Value = True Then
.Cells(indice, 20).Value = "SIM"
Else
If Opt_Q05_Nao.Value = True Then
.Cells(indice, 20).Value = "NÃO"
End If
End If
If Opt_Q06_Sim.Value = True Then
.Cells(indice, 21).Value = "SIM"
Else
If Opt_Q06_Nao.Value = True Then
.Cells(indice, 21).Value = "NÃO"
End If
End If
If Opt_Q07_Sim.Value = True Then
.Cells(indice, 22).Value = "SIM"
Else
If Opt_Q07_Nao.Value = True Then
.Cells(indice, 22).Value = "NÃO"
End If
End If
Postado : 30/03/2017 4:40 am