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! Request now
Using Conditional Formatting how could I highlight the "Provider %" which is 10% above the "Group %"
Using Conditional Formatting how could I highlight the "Provider %" which is 10% below the "Group %"
Thank you in advance!
@jonnyA , Create a color measure and use that in conditional formatting using filed value option
Switch(True(),
[Provider %]> [Group %] *1.1 , "Green" ,
[Provider %]< [Group %] *.9 , "Red" ,
"Blue"
)
How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4
When I try this formula all the data that was in the matrix goes away when adding the formula you said to try.
[Provider %] is not a measure in your model you need to create it
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
Provider % = CPT Code; shown as "Count" with show valaue as "% of row total"
I know, that's why you need a measure like
Provider % = COUNT( 'Table'[CPT Code])
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
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.