Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I have a date column where the values are in the format of 18-'Aug'-2017, how can I load the record?
Thanks,
Niharika
Try this?
Date(Date#(Replace(Date, Chr(39), ''), 'DD-MMM-YYYY'), 'DD-MMM-YYYY')
OR
Date(Date#(Replace(Date, Chr(39), ''), 'DD-MMM-YYYY'), 'MM/DD/YYYY')
Date(Date#(DateField,'DD-MMM-YYYY'),'YYYY-MM-DD')
Try this?
Date(Date#(Replace(Date, Chr(39), ''), 'DD-MMM-YYYY'), 'DD-MMM-YYYY')
OR
Date(Date#(Replace(Date, Chr(39), ''), 'DD-MMM-YYYY'), 'MM/DD/YYYY')
Hi Ziad,
The expression will work for the values which are in 'DD-MMM-YYYY' format, by the value I have is in 'DD-'MMM'-YYYY' format(Month in single quotes).So this wont work, is there any other way?
Thanks, this works