Forum Discussion

AndroidFactory's avatar
AndroidFactory
New Member
1 year ago
Solved

Value shown as % conditional formatting

Hiya,   I have a number of storage locations that are either full or empty in a given zone, I am using the same sums of locations to display the number in the column and the % of the row total. I ...
  • vicky_'s avatar
    1 year ago

    I think your rule right now is trying to format the cell based on the COUNT column (i.e for MC1 Empty, it's looking at 886, rather than 21%)

    you can use a measure to format - something like:

    Percentage = DIVIDE(SUM(Table[Count), CALCULATE(SUM(Table[Count]), REMOVEFILTERS(Table[LOC STATUS])))

    and then just apply the rules you have above. 
    Hope this helps