Forum Discussion
hanhks
8 years agoFrequent Visitor
Matrix Condition Format Base On Diagonal
I have a matrix summary check same item from 2 people. Each person has result difference with other. I make matrix compare results from them. I want to make matrix like below. Please help me, It's po...
- 8 years ago
Hi hanhks
Look at my test
in query editor, add two conditional columns
Then create a measure
Measure = IF(MAX([Custom1])>MAX([Custom2]),1,IF(MAX([Custom1])=MAX([Custom2]),0,-1))
Best Regards
Maggie
v-juanli-msft
8 years agoCommunity Support
Hi hanhks
Look at my test
in query editor, add two conditional columns
Then create a measure
Measure = IF(MAX([Custom1])>MAX([Custom2]),1,IF(MAX([Custom1])=MAX([Custom2]),0,-1))
Best Regards
Maggie
- hanhks8 years agoFrequent Visitor
I tested by your guide and it's OK. Very nice. Thank you.