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
PBINewbie920
Helper I
Helper I

Create column based on table

Hi Everyone,

 

I created a measure to calculate the % Variance between Actuals and Budget. Based on this, I would like to create a new column to give points based on how much variance, as show below. I tried using an "If" statement but was unable to get it to work properly. Any tips? Thank you!

 

% VariancePoints
less than 1%0
1-10%5
11-20%10
21%+15
1 ACCEPTED SOLUTION
v-cgao-msft
Community Support
Community Support

Hi @PBINewbie920 ,

 

What about trying the SWITCH() function? Please try this measure.

Measure = 
SWITCH(
    TRUE(),
    [% Variance] <= 0.01 , 0 ,
    [% Variance] > 0.01 && [% Variance] <= 0.1 , 5 ,
    [% Variance] > 0.1 && [% Variance] <= 0.2 , 10 ,
    [% Variance] > 0.2 , 15
)

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @PBINewbie920 ,

 

What about trying the SWITCH() function? Please try this measure.

Measure = 
SWITCH(
    TRUE(),
    [% Variance] <= 0.01 , 0 ,
    [% Variance] > 0.01 && [% Variance] <= 0.1 , 5 ,
    [% Variance] > 0.1 && [% Variance] <= 0.2 , 10 ,
    [% Variance] > 0.2 , 15
)

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

pranit828
Community Champion
Community Champion

Hi @PBINewbie920 

Can you post sample data and expected output along with the "If" statement measure.

Alternatively you should multiply your value by 100 and use Switch for the range.





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

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.