Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Aysh_2104
Helper II
Helper II

Conditional formatting to reflect only in one measure inside switch

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

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

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:

veasonfmsft_0-1664792023448.png

Reltead tutorial:

Apply conditional formatting in tables and matrixes 

 

Best Regards,
Community Support Team _ Eason

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

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:

veasonfmsft_0-1664792023448.png

Reltead tutorial:

Apply conditional formatting in tables and matrixes 

 

Best Regards,
Community Support Team _ Eason

Greg_Deckler
Super User
Super User

@Aysh_2104 Have a look at this:

Min/Max Color Formatter - Microsoft Power BI Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors