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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
jonnyA
Responsive Resident
Responsive Resident

Create a measure for gretaer than and less than

Hello,

I have 2 calculated measures I created ...

Provider % = COUNT( 'Test_Charge_Dataset'[CPT_Code])

Group % = IF (
ISFILTERED (Test_Charge_Dataset[Provider_Degree]), CALCULATE([Group Average], REMOVEFILTERS(Test_Charge_Dataset[Provider_Degree])), [Group Average])
I'm hoping someone could help create a formula that will show where the Provider % is 10% above or below the Group %
It also be helpful for me if we could ...
Create a formula that shows where the Provider % is 10% above the Group %
And
Create a formula that shows where the Provider % is 10% below the Group %
Thank you for your time in advance!
 
 
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@jonnyA Going to depend heavily on context but let's say you have some table visual with these two measures in it. You could create a measure like:

Ten Percent Above = IF(([Provider %]-[Group %])/[Group %]>=.1,1,0)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@jonnyA Going to depend heavily on context but let's say you have some table visual with these two measures in it. You could create a measure like:

Ten Percent Above = IF(([Provider %]-[Group %])/[Group %]>=.1,1,0)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.