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
Mikester_104
New Member

Percentage Grouping Power BI

New to Power BI - need help.

 

I have a very basic calculation that percentage between -100% and 1,000% - I am trying to group these so into a model as i have 13,000 records each with a different percetange.

 

I have already taken my on hand QTY and Set Safety Stock Value and completed the % over or under Safety Stock value. Whcih is hte %.

 

Want to Bucket or Group these into a range:

GroupLowHigh 
Safety Stock Gone-100%-100%anythin that falls between these two %'s add gone to new column
75% of Safety Stock Gone-75%-99% 
50% of Safety Stock Gone-50%-74% 
25% of  Safety Stock Gone-25%-49% 
Just Entered into SS0%-24% 
25% Above Safety Stock1%25% 
50% Above Safety Stock26%50% 
75% Above Safety Stock51%75% 
100% Above Safety Stock76%1000000% 
1 ACCEPTED SOLUTION

Hi @Mikester_104 ,

If I got it correctly, you can create this calculated column using switch() statement:

Group = 
SWITCH (
    TRUE (),
    'Table'[% into SS] = -1, "Safety Stock Gone",
    'Table'[% into SS] >= -0.99
        && 'Table'[% into SS] <= -0.75, "75% of Safety Stock Gone",
    'Table'[% into SS] >= -0.74
        && 'Table'[% into SS] <= -0.5, "50% of Safety Stock Gone",
    'Table'[% into SS] >= -0.49
        && 'Table'[% into SS] <= -0.25, "25% of Safety Stock Gone",
    'Table'[% into SS] >= -0.24
        && 'Table'[% into SS] <= 0, "Just Entered into SS",
    'Table'[% into SS] >= 0.1
        && 'Table'[% into SS] <= 0.25, "25% Above Safety Stock",
    'Table'[% into SS] >= 0.26
        && 'Table'[% into SS] <= 0.5, "50% Above Safety Stock",
    'Table'[% into SS] >= 0.51
        && 'Table'[% into SS] <= 0.75, "75% Above Safety Stock",
    'Table'[% into SS] >= 0.76
        && 'Table'[% into SS] <= 10000, "100% Above Safety Stock",
    "No corresponded data"
)

switch.png

 

Best Regards,
Yingjie Li

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
pranit828
Community Champion
Community Champion

Hi @Mikester_104 

 

Can you post the sample input and output for these records.

 

Regards,

Pranit





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

SkuDescriptionOn HandSafety Stock% into SS  
1234Tooth Brush100200-50.00%  
1111Dental Floss500200150.00%  
4321Toothpaste50500-90.00%  

Hi @Mikester_104 ,

If I got it correctly, you can create this calculated column using switch() statement:

Group = 
SWITCH (
    TRUE (),
    'Table'[% into SS] = -1, "Safety Stock Gone",
    'Table'[% into SS] >= -0.99
        && 'Table'[% into SS] <= -0.75, "75% of Safety Stock Gone",
    'Table'[% into SS] >= -0.74
        && 'Table'[% into SS] <= -0.5, "50% of Safety Stock Gone",
    'Table'[% into SS] >= -0.49
        && 'Table'[% into SS] <= -0.25, "25% of Safety Stock Gone",
    'Table'[% into SS] >= -0.24
        && 'Table'[% into SS] <= 0, "Just Entered into SS",
    'Table'[% into SS] >= 0.1
        && 'Table'[% into SS] <= 0.25, "25% Above Safety Stock",
    'Table'[% into SS] >= 0.26
        && 'Table'[% into SS] <= 0.5, "50% Above Safety Stock",
    'Table'[% into SS] >= 0.51
        && 'Table'[% into SS] <= 0.75, "75% Above Safety Stock",
    'Table'[% into SS] >= 0.76
        && 'Table'[% into SS] <= 10000, "100% Above Safety Stock",
    "No corresponded data"
)

switch.png

 

Best Regards,
Yingjie Li

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

Hi,

Are you looking for a measure or a calculated column solution?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

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.