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: 
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
Partner - Creator II
Partner - Creator II

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
Specialist II
Specialist II

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
Partner - Creator II
Partner - Creator II

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