Guest Jeferson Clístenes Postado Julho 15, 2008 Denunciar Share Postado Julho 15, 2008 pessoal, estou com o seguinte problema,fiz um formulário em VBA Excel, só que as datas saem invertidas quando adicionadas na planilhacomo posso resolver isto?onde tem datainicial, datafinal, dijuros, dfjuros, são os campos com dataActiveWorkbook.Sheets("DADOS").ActivateRange("a1").SelectDoIf IsEmpty(ActiveCell) = False ThenActiveCell.Offset(1, 0).SelectEnd IfLoop Until IsEmpty(ActiveCell) = TrueActiveCell.Value = precatorio.ValueActiveCell.Offset(0, 1) = precatorio.ValueActiveCell.Offset(0, 2) = oficio.ValueActiveCell.Offset(0, 3) = requerido.ValueActiveCell.Offset(0, 4) = requerente.Value'--------------'PARCELA 1'--------------ActiveCell.Offset(0, 5) = parcela1.ValueActiveCell.Offset(0, 6) = valor1.ValueActiveCell.Offset(0, 7) = datainicial1.ValueActiveCell.Offset(0, 8) = datafinal1.ValueActiveCell.Offset(0, 9) = percentual1.ValueActiveCell.Offset(0, 10) = dijuros1.ValueActiveCell.Offset(0, 11) = dfjuros1.Value Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Guest Jeferson Clístenes
pessoal, estou com o seguinte problema,
fiz um formulário em VBA Excel, só que as datas saem invertidas quando adicionadas na planilha
como posso resolver isto?
onde tem datainicial, datafinal, dijuros, dfjuros, são os campos com data
ActiveWorkbook.Sheets("DADOS").Activate
Range("a1").Select
Do
If IsEmpty(ActiveCell) = False Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until IsEmpty(ActiveCell) = True
ActiveCell.Value = precatorio.Value
ActiveCell.Offset(0, 1) = precatorio.Value
ActiveCell.Offset(0, 2) = oficio.Value
ActiveCell.Offset(0, 3) = requerido.Value
ActiveCell.Offset(0, 4) = requerente.Value
'--------------
'PARCELA 1
'--------------
ActiveCell.Offset(0, 5) = parcela1.Value
ActiveCell.Offset(0, 6) = valor1.Value
ActiveCell.Offset(0, 7) = datainicial1.Value
ActiveCell.Offset(0, 8) = datafinal1.Value
ActiveCell.Offset(0, 9) = percentual1.Value
ActiveCell.Offset(0, 10) = dijuros1.Value
ActiveCell.Offset(0, 11) = dfjuros1.Value
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.