Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to create a Gauge chart that will show the percentage of the total records that meet a certain condition. In this case the condition is the elapse days are less than a defined value.
I am using the following expression.
=(If([Elapsed Days]<=100,Count(DISTINCT Number))/Count(DISTINCT Number))
The issue seems to be when i have multiple records selected returned the expression does not a value. If i select a single value where [Elapsed Days] is less than 100 i get 100%. If I select a single value that is 100 or greater than [Elapsed Days] then the expression does not return a value.
Any help would be appreciated
Hi,
Instead of using
=(If([Elapsed Days]<=100,Count(DISTINCT Number))/Count(DISTINCT Number))
try this
=Count(DISTINCT if([Elapsed Days]<=100,Number))/Count(DISTINCT Number))
Thanks & Best Regards,
Kuldeep Tak
Hi,
Instead of using
=(If([Elapsed Days]<=100,Count(DISTINCT Number))/Count(DISTINCT Number))
try this
=Count(DISTINCT if([Elapsed Days]<=100,Number))/Count(DISTINCT Number))
Thanks & Best Regards,
Kuldeep Tak