Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
KommulaRahul
Contributor III
Contributor III

Need help on date changing format

17089402028862988920378014180861.jpg

 My dropped date is in the above format. 

I want my dropped date to be in MM-DD-YY format. 

Can u write a suitable expression to this

 

Labels (1)
1 Solution

Accepted Solutions
salmankojar
Creator
Creator

hi, @KommulaRahul Just use below expression for your date,
DATE(Dropped Date,'MM-DD-YY')

This will solve your problem.
Thankyou

View solution in original post

4 Replies
F_B
Creator III
Creator III

Hi KommulaRahul,

your Dropped Date field looks like a timestamp. If you load it as a date field instead, it should take the date format set in the main section of the load editor.

To do this just use the Date() function: Date - script and chart function | Qlik Sense on Windows Help

Something like the following.

 

YourTable:

LOAD

Date(Dropped Date)

 

Hope this helps.

 

salmankojar
Creator
Creator

hi, @KommulaRahul Just use below expression for your date,
DATE(Dropped Date,'MM-DD-YY')

This will solve your problem.
Thankyou

nafishkhan
Partner - Contributor
Partner - Contributor

Hi @KommulaRahul use below 

Date(Floor([Dropped Date]),'MM-DD-YY')  As New_Dropped_Date