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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
am_i_really
Frequent Visitor

Switch statement based on another measure

Hi All, 

 

I'm trying to write a measure that will give me a specific value based on the result of another measure. I have the following measure "NON-PM Score = DIVIDE([NON-PM On Time], [NON-PM Total])" that gives me a percentage. Based on this percentage I am trying to write a measure that will give me a number 1-5. This is what I was trying to use but it doesnt not work:

Measure = SWITCH(
    TRUE(),
    'Measures Table'[NON-PM Score] > .95, "5",
    'Measures Table'[NON-PM Score] > .89 < .95, "4",
    'Measures Table'[NON-PM Score] > .79 < .90, "3",
    'Measures Table'[NON-PM Score] > .69 < .80, "2",
    'Measures Table'[NON-PM Score] < .70 , "1"
)

What I basically need is for the measure for show a
5: 95% and higher
4: 90 - 94.9%

3: 80 - 89.9%

2: 70 - 79.9%
1: anything less than 70%


Thank you in advance!

1 REPLY 1
Greg_Deckler
Super User
Super User

@am_i_really Hard to say why it isn't working. You could simplify it and get better performance this way. Perhaps provide sample data and a description of what is going wrong.

Measure = 
  VAR __Measure = 'Measures Table'[NON-PM Score]
  SWITCH(
    TRUE(),
    __Measure < .7, "1",
    __Measure > .69 < .80, "2",
    __Measure > .79 < .90, "3",
    __Measure > .89 < .95, "4",
    "5"
  )

@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors