Forum Discussion
kalkhudary
Helper IV
3 years agoConditional Formatting based on one column that contains string value
I have a Matrix table that includes multiple projects with their Project Code, I want to apply on the project code column conditional formatting where If I have a blank in one of the cells, it will r...
- 3 years ago
Create a measure, and format based on that:
formatting = IF(SELECTEDVALUE('Table'[Project Code]) = "", 1).
kalkhudary
Helper IV
3 years agoCan you please explain steps.