Se me permitem,
por "macro", algum formatos de entrada podem gerar "confusão", já que internamente o vba "entende melhor" datas no formato "mm/dd/yyyyy".
Então o que uso (foi disponibilizado no grupo Excel-BR pelo JLM) é :
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'Função para entrar Datas sem usar "/"
'Por: JLM - José Luiz Martins em 28/08/2003
Dim DateStr As String
On Error GoTo EndMacro
'If Intersect(Target, Range("A1:A10")) Is Nothing Then Exit Sub
If Target.Cells.Count > 1 Then Exit Sub
If Target.Value = "" Then Exit Sub
Application.EnableEvents = False
With Target
If .HasFormula = False Then
Select Case Len(.Formula)
Case 4
DateStr = Left(.Formula, 1) & "/" & _
Mid(.Formula, 2, 1) & "/" & Right(.Formula, 2)
Case 5
DateStr = Left(.Formula, 1) & "/" & _
Mid(.Formula, 2, 2) & "/" & Right(.Formula, 2)
Case 6
DateStr = Left(.Formula, 2) & "/" & _
Mid(.Formula, 3, 2) & "/" & Right(.Formula, 2)
Case 7
DateStr = Left(.Formula, 1) & "/" & _
Mid(.Formula, 2, 2) & "/" & Right(.Formula, 4)
Case 8
DateStr = Left(.Formula, 2) & "/" & _
Mid(.Formula, 3, 2) & "/" & Right(.Formula, 4)
Case Else
Err.Raise 0
End Select
.Formula = DateValue(DateStr)
End If
End With
Application.EnableEvents = True
Exit Sub
EndMacro:
MsgBox Err.Number & " - " & Err.Description
MsgBox "Você não entrou com uma data válida."
Range(Target.Address).ClearContents
Application.EnableEvents = True
End Sub
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 17/04/2013 7:42 am