Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear all,
How can I change below dateformat into a usable one:
Sep 30 2013 12:58AM
I already have the time covered, but I cannot seem to get the date converted.
It turns blank.
Please see attached for the example.
You have extra spaces in the format. This works:
Date(TimeStamp#(Replace(Time,' ',' '),'MMM D YYYY hh:mmtt'),'DD-MM-YYYY hh:mm:ss')
The replace() swaps all double-spaces with a single.
Now it works. Thanks!