Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a field called TIME_ID with date in the format 20130623.How can I change this to the format 06-23-2013 ?
Thanks in advance.
Date(Date#( '20130623', 'YYYYMMDD' ) ,'MM-DD-YYYY')
or
Date(Date#(TIME_ID, 'YYYYMMDD' ) ,'MM-DD-YYYY')
Date(Date#( '20130623', 'YYYYMMDD' ) ,'MM-DD-YYYY')
or
Date(Date#(TIME_ID, 'YYYYMMDD' ) ,'MM-DD-YYYY')
HI
Try like this
Date(Date#(TIME_ID, 'YYYYMMDD' ) ,'MM-DD-YYYY')
or
Date(Date(TIME_ID, 'YYYYMMDD' ) ,'MM-DD-YYYY')
Hi,
Use Date# function if the field is not in date format.
Date(Date#(TIME_ID, 'YYYYMMDD'), 'MM-DD-YYYY')
if it is already in date format then use
Date(TIME_ID, 'MM-DD-YYYY')
THANK YOU
THANK YOU
ONE MORE QUESTION,
How can I convert this into the format Jan-13,feb-13,mar-13 and so on?
Hi
Try like this
Date(Date#(TIME_ID, 'YYYYMMDD' ) ,'MMM-YY')