cancel
Showing results for 
Search instead for 
Did you mean: 
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
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors