Skip to content

Instantly share code, notes, and snippets.

@talatham
Created June 12, 2013 14:27
Show Gist options
  • Save talatham/5765754 to your computer and use it in GitHub Desktop.
Save talatham/5765754 to your computer and use it in GitHub Desktop.
Convert US date to UK date.
Function ToDDMM(dDate)
Dim dTemp
dTemp=Split(dDate, "/")
ToDDMM=dTemp(1) & "/" & dTemp(0) & "/" &dTemp(2)
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment