Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi comm,
today im dealing with a timeformat like this:
YYYYMMDDssmmhh
and i want to bring into the following format
hh:mm:ss DD/MM/YYYY
can someone help me with doing this in loadscript.
THX
Example:
Date(Date#('20170101150100', 'YYYYMMDDssmmhh'),'hh:mm:ss DD/MM/YYYY') ;
Example:
Date(Date#('20170101150100', 'YYYYMMDDssmmhh'),'hh:mm:ss DD/MM/YYYY') ;
Hi,
Try
TimeStamp(TimeStamp#([Your Fielf], 'YYYYMMDDssmmhh'), 'hh:mm:ss DD/MM/YYYY')
Try this.
Date(Timestamp(timestamp#(Fieldname,'YYYYMMDDssmmhh')),'DD/MM/YYYY')
Regards,
Kaushik Solanki