Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can we change the way field names are being displayed in Selection bar after a selection is made in Qliksense?
For example I have a chart where we show only the last ten years of data. We restrict years by this expression:
if ([MyYear] > CurrentYear -11, [MyYear])
So when a selection is made in this chart, the selection bar on the top shows as follows
=if ([MyYear] >....
2014
Instead can I we have it display as follws
=MyYear
2014
You can try [Year] as dimension and Sum({<YEAR={">$(=[CurrentYear] -11)"}>} MyMeasure) as measure
I think you just need to change the label for the measure. You can't put an expression in the label. But you can get rid of the code being displayed.
I just tried. Still the same code is displaying
You can try [Year] as dimension and Sum({<YEAR={">$(=[CurrentYear] -11)"}>} MyMeasure) as measure
Dynamic Label for Dimensions/Measures?
This should help
Thank you so much. This is what I wanted.