Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys
Trying to write a formula
Could you correct this?
if(GetSelectedCount({<[Product Sub Group]>}={'Cheese'}>}[Sales]))
I only want the chart to populate if cheese is selected
Thankyou
Hi Aaron,
use the below formula in the conditional tab and Sum(Sales) in a your expression tab
Substringcount(Concat ([Product Sub Group],'|'),'Cheese')
Many Thanks
Karthik
Sorry this is for Qlik sense right?
No this is for QlikView
Set a chart calculation condition:
=GetSelectedCount([Product Sub Group])
Thats sort of correct
But how to make it populate when i select the value cheese?
try:
if( GetFieldSelections([Product Sub Group])=,'Cheese',sum(Sales),0)
That does not work
Okay Guys
Still not working
How would i write this
if(GetSelectedCount({<[Product Sub Group]>}={'Cheese'}>}
another
if(GetSelectedCount({<[Tshirt]>}={'Black'}>}
I only want the chart to populate if the defined value is selected?
As a calculated condition
Thankyou
you have a "," before cheese..
what if u elminate it?