Forum Discussion
sreyes10
6 years agoHelper I
Conditional Formatting not is not working
Good day, I have created a report and some tables with a conditional formatting. With one table, I had the option to select wheter it is a number or a percentage. However, I have tried to c...
- 6 years ago
sreyes10 ,
I would suggest you create a new calculate column using dax below and do the summarization operation on the new column:
New Column = IF ( Table[Boolean] = TRUE (), 1, 0 )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yuta-msft
6 years agoCommunity Support
sreyes10 ,
I would suggest you create a new calculate column using dax below and do the summarization operation on the new column:
New Column =
IF ( Table[Boolean] = TRUE (), 1, 0 )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.