Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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
Luminary Alumni
Luminary Alumni

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.