Forum Discussion
True or False Percent Gauge
- Anonymous9 years ago
Create 3 Measures. First measure would be a simple "CountRows" measure. That will give you the total number of cases. This measure will change depending on your filter context. Next create a 2nd measure which is going to count the number of True rows, this can be done doing something like:
CountTrue = CALCULATE( COUNTROWS('YourTable'), 'YourTable'[Case Solved?] = TRUE() )Lastly the 3rd measure is what is your percentage, which will be the [CountTrue] / [CountAll]
Create 3 Measures. First measure would be a simple "CountRows" measure. That will give you the total number of cases. This measure will change depending on your filter context. Next create a 2nd measure which is going to count the number of True rows, this can be done doing something like:
CountTrue = CALCULATE(
COUNTROWS('YourTable'),
'YourTable'[Case Solved?] = TRUE()
)Lastly the 3rd measure is what is your percentage, which will be the [CountTrue] / [CountAll]
How can we visualizre this?