Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Good Evening! I'm working on a matrix module and have two date columns that contain when the members evaluation is due and another column that shows the current evaluation date in the record. I would like to create some type of conditional format that turns the cell Red if dates do not match.
Appreciate the help!
Solved! Go to Solution.
Hi @Morendo1975
Try this:
Conditional Format =
IF (
SELECTEDVALUE ( 'Table'[Date1] ) <> SELECTEDVALUE ( 'Table'[Date2] ),
"Red"
)
Please note that conditional formatting in Matrix applies to values only - not column or row headers.
Hi @Morendo1975
Try this:
Conditional Format =
IF (
SELECTEDVALUE ( 'Table'[Date1] ) <> SELECTEDVALUE ( 'Table'[Date2] ),
"Red"
)
Please note that conditional formatting in Matrix applies to values only - not column or row headers.
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 32 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 66 | |
| 42 | |
| 27 | |
| 25 |