Como inserto fecha automática en ecxell y que no aparezca el calendario solo la fecha al dar clic
esto es lo que he hecho pero no me corre en todo
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Target, Range("b2:5")) Is Nothing Then
ActiveCell.Formula = Now()
ActiveCell.Copy
ActiveCell.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False
Application.CutCopyMode = False
ActiveSheet.Unprotect
ActiveCell.Locked = True ActiveSheet.Protect DrawingObjects:=True, Scenarios:=True
End If
End Sub
Respuesta de Luis Mondelo
1