Join 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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a slicer with 3 options: US, EU, ASIA. I would like to be able to change the font colour for each of these options. I would like US to appear Blue, EU appear red, and ASIA appear green. Is this possible?
Solved! Go to Solution.
You create a numeric measure for it like:
Measure =
VAR __value = MAX('Table'[Column])
RETURN
SWITCH(TRUE(),"USA",1,"EU",2,"ASIA",3)
Or, create a column that assigns a number based on the text value. Base your conditional formatting on this measure or column.
Hello @Greg_Deckler I need some quick help from you. I'm essentially looking to have dynamic text heading in one text box with multiple slicer selections. Additionally, I'd like to assign different colors to each slicer. Is it possible to accomplish this in Power BI?
Well, not in a slicer. You could put the three in a table and use Conditional Formatting. Depending on what you are doing, selecting a row in a table is pretty much a slicer.
The conditional formatting is for numerics only, not text
You create a numeric measure for it like:
Measure =
VAR __value = MAX('Table'[Column])
RETURN
SWITCH(TRUE(),"USA",1,"EU",2,"ASIA",3)
Or, create a column that assigns a number based on the text value. Base your conditional formatting on this measure or column.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!