i have recently set up the code below:
However since a new use has accessed the document i can't stop the date from formatting as MM/DD/YYYY
how do i add in a formatting to be DD/MM/YYYY? any help much appreciated!
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub 'Does nothing if several cells are changed
If Not Intersect(Target, Range("A:A")) Is Nothing Then 'Only if cell changed in column A:
Target.Offset(, 1).Value = Timestamp(Target) 'Put the TimeStamp on column B
End If
End Sub
However since a new use has accessed the document i can't stop the date from formatting as MM/DD/YYYY
how do i add in a formatting to be DD/MM/YYYY? any help much appreciated!
Last edited by a moderator: