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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Add text to lable

I am presenting data by quarter, with the labels generated by formula.  I would like to add text after it displays the quarter. Here is one of the labels:

=(QuarterName (SetDateYear (Today(), max (total Year (listed))), 0))

This displays the current quarter, but I would like to add the text 'Listings' after it. Can anyone help?

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
MVP
MVP

=(QuarterName (SetDateYear (Today(), max (total Year (listed))), 0)) & ' listings'

View solution in original post

4 Replies
Not applicable
Author

Hi,

Try you made a table box whit only field listed?. i think that would be good.

rwunderlich
MVP
MVP

=(QuarterName (SetDateYear (Today(), max (total Year (listed))), 0)) & ' listings'

Not applicable
Author

Thanks. How can I format QuarterName to show 1Q12, instead of Jan-Mar 2012?

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this

=Ceil(Month(Today())/4) & 'Q' & Right(Year(Today()), 2)

Regards,

Jagan.