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

Date Format

='Premium ' & (Max(R_YEAR)) &'-'& (Max(R_MONTH))

when I use above label in a chart the result is  2013-1   , 2013-2 etc.

I want the label  to display as follows   

2013-JAN    2013-FEB

pls help me to rewrite the above expression correctly

10 Replies
Not applicable

Hi,

If your R_MONTH filed is numeric then try below expression,

='Premium ' & (Max(R_YEAR)) &'-'& (Date(DATE#(MAX(R_MONTH),'M'),'MMM') )