Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

Expression Lable

I have following expression label

='Refunds' & '  '&(ONLY(C_YEAR_MONTH)) and resulting output is Refunds 1-2014

But want this output to appear as Refunds Jan-14

pls help me to modify the above expression label to display the desired result

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

='Refunds' & '  '&Date(Date#((ONLY(C_YEAR_MONTH)),'M-YYYY'),'MMM-YY')

View solution in original post

3 Replies
MK_QSL
MVP
MVP

='Refunds' & '  '&Date(Date#((ONLY(C_YEAR_MONTH)),'M-YYYY'),'MMM-YY')

PrashantSangle

Try,

='Refunds' & '  '&MonthName(ONLY(C_YEAR_MONTH))


Or


='Refunds' & '  '&Date(Date#(C_YEAR_MONTH),'M-YYYY'),'MMM-YY')



Regards,


Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
upaliwije
Creator II
Creator II
Author

Tks