Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello Community.
In an Array it is possible to Format/Highlight by grouping of a specific column, in this case by Mark ?
Greetings.
Solved! Go to Solution.
@Syndicate_Admin , You need to color all columns.
You can create a color measure like and use that in conditional formatting using field value option
Switch(Max(Table[Marca]),
"Honda", "Green",
"Mazda","Blue",
"Toyota", "grey",
"Hyundai", "yellow" // or use hex code #ff11ff
)
How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4
@Syndicate_Admin Kindly refer this blog for more info
Dynamic Coloring based on Category
Kudos will be appriciated 😊
perfect!!!
And now if the column is not category, and let's say it is the id of the person, and this person repeats N times, can I paint each group according to ID?
Best regards!!!
@Syndicate_Admin Kindly refer this blog for more info
Dynamic Coloring based on Category
Kudos will be appriciated 😊
@Syndicate_Admin , You need to color all columns.
You can create a color measure like and use that in conditional formatting using field value option
Switch(Max(Table[Marca]),
"Honda", "Green",
"Mazda","Blue",
"Toyota", "grey",
"Hyundai", "yellow" // or use hex code #ff11ff
)
How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4
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.