Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a KPI, filters, and 2 other charts. Is there a way to keep the KPI from automatically updating when I click on the filters but allow the other 2 charts to continue updating based on the filters? For example, let's say the KPI has a value of 87%. Regardless of the filter I click on, I would like to keep the KPI at 87% while the other 2 charts change as needed depending on the filters.
Any help on this issue is greatly appreciated.
Thanks,
Shu
Yes, I think you should be able to write like this:
Count({1} if([value1], [value2])) / Count({1}[value2])
Thank you for the quick reply. Below is my expression for the KPI:
Count(if([value1], [value2]))
/
Count([value2])
Do you know how I would apply the {1} to the above expression?
Yes, I think you should be able to write like this:
Count({1} if([value1], [value2])) / Count({1}[value2])
That worked! Thank you so much for your help!