Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I Have a field
Tickers :
AAA
ACB
BCG
CDG
Suppose if a user select particular tickets lets say AAA i want to perform the measure like sum({<Ticker={'AAA'}>}Sales).
this would be in a qliksense line chart
If a user says more than one field values i am expecting multiple line in the line chart how can this be acheived?
I Am looking for if condition like getfieldselection(Ticker).But if multiple selected in differnet order this is not working
Any help would be appreciated
as i understand you want the individual ticker line only if a ticker is selected. Else you show just the total line. Is that right?
if so Why dont you add ticker as a dimension? and Enable it conditionally e.g. GetSelectedCount(Ticker)>0
Ah.. i just saw the qlik sense part. You posted on the qlikview forums hence the confusion.
May not be a perfect solution but below should work
add dimension
=If(GetSelectedCount(Ticker)>0,Ticker)