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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
yodha
Helper IV
Helper IV

Conditional formatting using slicer

i have a table like this, Capture.PNG

and i did conditional formatting for "Test Measure" row like this,

 

Untitled 1.png

 

now i have to add a slicer for "test measure", based on slicer value selection back ground color should change. can we achieve this functionality, thanks in advance.

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@yodha you can use "Field Value"  instead of "Rules" in format by option. Field Value is something you can select as a measure to create the colors:

 

For example:

 

My Color = 
VAR __slicerValue = SELECTEDVALUE( Table[SlicerColoumn[ )
RETURN
SWITHC( TRUE(),
__slicerValue > 100, "Red",
__slicerValue > 50, "Yellow",
"Green"
)

And in Field you can chose "My Color" measure which will drive the logic for color.

 

Hope it helps



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

2 REPLIES 2
parry2k
Super User
Super User

@yodha you can use "Field Value"  instead of "Rules" in format by option. Field Value is something you can select as a measure to create the colors:

 

For example:

 

My Color = 
VAR __slicerValue = SELECTEDVALUE( Table[SlicerColoumn[ )
RETURN
SWITHC( TRUE(),
__slicerValue > 100, "Red",
__slicerValue > 50, "Yellow",
"Green"
)

And in Field you can chose "My Color" measure which will drive the logic for color.

 

Hope it helps



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi,

Thanks for the reply, it really helped me, now am able to achieve this functionlity in my report.

thanks once again.


@parry2k wrote:

@yodhayou can use "Field Value"  instead of "Rules" in format by option. Field Value is something you can select as a measure to create the colors:

 

For example:

 

My Color = 
VAR __slicerValue = SELECTEDVALUE( Table[SlicerColoumn[ )
RETURN
SWITHC( TRUE(),
__slicerValue > 100, "Red",
__slicerValue > 50, "Yellow",
"Green"
)

And in Field you can chose "My Color" measure which will drive the logic for color.

 

Hope it helps


 

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.