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

Format Date

My date is in the form of 31/01/2017. I want to format it as 31-Jan. How do I do it?

This doesn't work. There is an error.

=date(date#(=maxstring({[Date1]} [DATE]),'DD/MM/YYYY'), 'DD-MMM')

3 Replies
sunny_talwar

May be this:

Date(MaxString({[Date1]} DATE), 'DD-MMM')

UPDATE: or this

Date(Max({[Date1]}Date#(DATE, 'DD/MM/YYYY')), 'DD-MMM')

tresesco
MVP
MVP

Did you try like?

                         Date(Date#(yourDate, 'DD/MM/YYYY'), 'DD-MMM')

sdmech81
Specialist
Specialist

=Date(Date#( [DATE], 'DD/MM/YYYY'), 'DD-MMM')