Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am having problem to exclude values in KPI
I want to exclude all the C in "inspected grade"
And the same question for "transaction type" and "Status"
I want to exclude "try" in transactions type
I want to exclude "Qouted" in "status"
See CSV file for example
=Count({$<InspectedGrade-={'C'}>} InspectedGrade)
=Count({$-<InspectedGrade={'C'}>} InspectedGrade)
try both
try use if(Not match(inspected grade,'*C*,inspected grade)
Hi
if(Not Match ([Inspected Grade],'C*'),[Inspected Grade]) does not work 😞
u need to use some aggregate function it will not work with that expression i will come back
=Count({$<InspectedGrade-={'C'}>} InspectedGrade)
=Count({$-<InspectedGrade={'C'}>} InspectedGrade)
try both
Thanks! It worked! 🙂