Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
i have a table with different measure using a switch formula. I need to show the conditional formatting only for one measure under the switch. when i say conditional its a color coding based on the number. Is there any option to create conditional formatting for measure under switch measure
Example :-
SlicerSelection = VAR Selection = SELECTEDVALUE ( 'Selection Table'[Selection] ) RETURN SWITCH ( TRUE (), Selection = "Domestic", [Domestic], Selection = "International", [International], CALCULATE ( SUM ( 'financials'[Profit] ) ) )
under this measure i want to only color code the financial profit based on number like -0, red between 0-5 yellow above 5 green. Please suggest
Solved! Go to Solution.
Hi, @Aysh_2104
You can add a measure like:
Color = SWITCH(TRUE(),[SlicerSelection]<=0,"red",[SlicerSelection]>0&&[SlicerSelection]<=5,"yellow",[SlicerSelection]>5,"green")
Then apply it to conditional formatting of field background color:
Reltead tutorial:
Apply conditional formatting in tables and matrixes
Best Regards,
Community Support Team _ Eason
Hi, @Aysh_2104
You can add a measure like:
Color = SWITCH(TRUE(),[SlicerSelection]<=0,"red",[SlicerSelection]>0&&[SlicerSelection]<=5,"yellow",[SlicerSelection]>5,"green")
Then apply it to conditional formatting of field background color:
Reltead tutorial:
Apply conditional formatting in tables and matrixes
Best Regards,
Community Support Team _ Eason
@Aysh_2104 Have a look at this:
Min/Max Color Formatter - Microsoft Power BI Community
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |