Forum Discussion
jonnyA
Responsive Resident
5 years agoUsing Conditional Formatting to show 10% above and 10% below Group%
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 "Gr...
jonnyA
Responsive Resident
5 years agoI created the following formulas ...
Provider % = COUNT( 'MEDONE_Charge_Dataset'[CPT_Code])
Color 2 = IF ( [Provider %] > 1.1 * [Group Average (Ignore Degree)] , "Green" , IF ( [Provider %] < 1.1 * [Group Average (Ignore Degree)] , "Red"))
But everything came back "Red", but i dont know why?
aj1973
Community Champion
5 years agoI have a doubt on the Group % measure (the unit)!!
Since Group % is constant and equal 0.0167 can you replace in this formula
Color 2 = IF ( [Provider %] > 1.1 * 0.0167 , "Green" , IF ( [Provider %] < 1.1 * 0.0167 , "Red")) or
Color 2 = IF ( [Provider %] > 0.01837 , "Green" , IF ( [Provider %] < 0.01837 , "Red"))
let me know