Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I am creating a chart which i would like to display the count of the field "Average Utilization", that is a field with percentage values.
Below is a print screen of the field "Average Utilization":
How can i count the total of the values in percentage?
My database has another field with percentage values, and when the user apply a filter for instance "10%", the chart must display the percentage count of all the values which is 10%.
Anyone could help to solve this ?
Regards,
Rodrigo
May be just do a simple count like this -> Count(Average Utilization)?
Seems like you want to ignore user selections / user filter:
=Count({1} [Average Utilization])
if you also need to ignore dimensions, use the TOTAL qualifier:
=Count({1} TOTAL [Average Utilization])
edit: the percentage would then be calculated like
=Count( [Average Utilization]) / Count({1} [Average Utilization])
Seems like it should filter -> Chart must display the percentage count of all values which is 10%
Hahahaha, I have no idea what is required and what is either of us are proposing .
But, I am sure what you are proposing will be right in the end as always
Thanks Sunny for your answer, i did what you told, and i have the situation below:
I forgot to mention that my chart has de dimension Division, splited in 3 distinct values (above).
But when i apply some other filters, the chart always display 100%:
Have you selected the relative option on the expression tab?
Do you want to view count numbers or Count in terms of percentage? I think you should try what Stefan proposed below if you are trying to get percentages
Yes, i have selected the relative option !
May be you are looking for this:
Count(Average Utilization)/Count(TOTAL {1} Average Utilization)
or this:
(Count({<Division>}Average Utilization)/Count(TOTAL {1} Average Utilization)) * Avg(1)
also uncheck the relative option.