Forum Discussion
Conditional Formatting Matrix Table By Rows
- 1 year ago
Hi,
I am not sure if I understood your question correctly, but I tried to create three measure that rank three different measures in the table visualization. And then, in the conditional formatting option, I tried to configure like below for all three measures.
Please check the below picture and the attached pbix file. - 1 year ago
Hello moses07_ferns
You can follow below approach for your solution as well..
1) One disconnected Measure Table
2) One Complete Measure.
Below is the codeColorMatrix = VAR _HighestValue = MAXX( { [Sales],[Prev Month Sales],[Prev 2MONTHS SALE] }, [Value] ) VAR _lowestValue = MINX( {[Sales],[Prev Month Sales],[Prev 2MONTHS SALE] }, [Value] ) VAR _MidValue = MAXX( FILTER( { [Sales],[Prev Month Sales],[Prev 2MONTHS SALE] }, [Value] > _lowestValue && [Value] < _HighestValue ),[Value] ) VAR _result = IF( [MeasureConection] = _HighestValue, "Green" , IF( [MeasureConection] = _MidValue, "Yellow", IF( [MeasureConection] = _lowestValue,"Red" ) ) ) RETURN _resultBelow is the screenshot
pbix file is attached.
Hope it helps
Regards
sanalytics
Hi,
I am not sure if I understood your question correctly, but I tried to create three measure that rank three different measures in the table visualization. And then, in the conditional formatting option, I tried to configure like below for all three measures.
Please check the below picture and the attached pbix file.