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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Chart and Graph formatting

Hello everyone,

Just a quick simple one, but I can't seem to find where to make the change.

I have months on the x axis of my chart, and want to change the format of the date to go from DD/MM/YYYY to MMM YY, how can I go about this?

With many thanks,

Simon

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

= Date(Datefield, 'MMM YY') as dimension

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

3 Replies
MayilVahanan

HI

Try like this

= Date(Datefield, 'MMM YY') as dimension

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
CELAMBARASAN
Partner - Champion
Partner - Champion

Better you can create a field in script itself.

or try with this in charts

=Date(MonthStart(DateField), 'MMM YYYY')

or

=Month(DateField) &' ' & Year(DateField)

Hope it helps

Not applicable
Author

That works perfectly, thank you