Forum Discussion
Anonymous
4 years agoNot applicable
Conditional Formatting based on table
Hey everyone, I've got the following table: I'd like to format the first two columns conditionally: If the of Totaal Omzet is less then Prognose Omzet, then the value should be red. Othe...
- 4 years ago
Hi Anonymous
You can create simple measure to check if prognose is higher than total:check = IF(SUM('Table new'[Prognose])>SUM('Table new'[Total]),1,0)Then you go to matrix's visual settings, cell elements and apply background color based on your measure:
Saap
Resolver III
4 years agoHi Anonymous
You can create simple measure to check if prognose is higher than total:
check = IF(SUM('Table new'[Prognose])>SUM('Table new'[Total]),1,0)
Then you go to matrix's visual settings, cell elements and apply background color based on your measure: