Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am trying to conditional format a matrix that I have based on an average value. If my value falls below "X" I want it to be red, and if the value is greater than "X" I want it to be green. I know I can insert a number, but this will not work as the average number which is the benchmark value is constantly changing as more data is added and refreshed. Does anyone have a solution? Thank you!
Solved! Go to Solution.
Hi @leibowjb,
You mean the "X" is dynamic. If so, I'm afraid we can't do it by now. You can submit or vote an idea here: number-formatting and conditional-formatting-cell-highligh-font-etc. Maybe there is a workaround that is creating a like this:
Measure = VAR averageS = CALCULATE ( AVERAGE ( Table1[Score] ), ALL ( Table1 ) ) RETURN IF ( MIN ( 'Table1'[Score] ) <= averageS, 0, 1 )
Best Regards!
Dale
Hi @leibowjb,
You mean the "X" is dynamic. If so, I'm afraid we can't do it by now. You can submit or vote an idea here: number-formatting and conditional-formatting-cell-highligh-font-etc. Maybe there is a workaround that is creating a like this:
Measure = VAR averageS = CALCULATE ( AVERAGE ( Table1[Score] ), ALL ( Table1 ) ) RETURN IF ( MIN ( 'Table1'[Score] ) <= averageS, 0, 1 )
Best Regards!
Dale
User | Count |
---|---|
73 | |
70 | |
38 | |
24 | |
23 |
User | Count |
---|---|
96 | |
94 | |
50 | |
42 | |
40 |