Convert US date format to UK date format
No need for the DateSerial function. Just use
Debug.Print Format(Now, "short date")
"Carim" wrote in message
oups.com...
Hi Louise,
As a complement :
If Dat is your variable ...
Format(DateSerial(Year(Dat), Month(Dat), Day(Dat)), "Short
Date")
HTH
Cheers
Carim
|