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

Announcements
Qlik Unveils New Agentic Capabilities Across Analytics, Data Engineering, and Trust: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

chart label display by selection

Hi Gurus,

I want to display my 3 selections seperated with ':' in chart window titel

Please find the sample xl file

required output format:   2014:Jan:Q1

I have year Field:2014,2015

Yearquarter:14-Q1( need to Bring only Q1 in lable)

Month Year:Jan-14(need to Bring only Month )

Thanks inadvance

Labels (1)
5 Replies
petter
Partner - Champion III
Partner - Champion III

This should work:

=Min(Year) & ';' & MinString(Month(Month)) & ';' & Right(MinString([Quarter year]),2)

tresB
Champion III
Champion III

Check attached qvw

Not applicable
Author

You can use this ... But there should be always one selected ..

=Year&':'&Month(Month)&':'&Right([Quarter year],2)

Anonymous
Not applicable
Author

Hi tresesco,

Thanks for your Time.

If i select only Month it should display :Jan

it would be getfield selections based

thanks,

tresB
Champion III
Champion III

Like this? PFA

Note, you can avoid the ';' symbols as well by checking null in a condition under if clause.