Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

rc-date functions

1. how to convert date from string formt?

2 Replies
anbu1984
Master III
Master III

Date#(DateField,'D/M/YYYY')

Change 'D/M/YYYY' to format of your date field

jagan
Partner - Champion III
Partner - Champion III

Hi Manoj,

Try like this

=Date(Date#(YourDateDimension, 'Source Date Format'), 'Target Date Format')

Example:

=Date(Date#('2014-05-29', 'YYYY-MM-DD'), 'DD-MM-YYYY') Now the result is : 29-05-2014

=TimeStamp(TimeStamp#('2014-05-29 14:30:30', 'YYYY-MM-DD hh:mm:ss'), 'DD-MM-YYYY hh:mm:ss') Now the result is : 29-05-2014 14:30:30

Regards,

Jagan.