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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
mibu
Microsoft Employee
Microsoft Employee

Groups ASPs based on a Measure

Hey Everyone,

I calculated ASP by dividing Column Revenue by Column Units...

I now want to group those ASPs into four groups as follows:  A ($0-299), A ($300-499), A ($500-999), A ($1000+)...

Guidance on how to achieve this by another Measure or Calcualted Column or some other way greatly appreciated.

Thank you!

mibu

1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hello @mibu ,

You can create a calculated column as DAX below.

Group ASP =
SWITCH (
    TRUE (),
    Table1[ASP] >= 0
        && [ASP] < 300, "A ($0-299) ",
    Table1[ASP] >= 300
        && [ASP] < 500, "A ($300-499) ",
    Table1[ASP] >= 500
        && [ASP] < 1000, "A ($500-999)",
    Table1[ASP] >= 1000, "A ($1000+)"
)

NOTE: The .pbix link you shared cannot be opened.

Best regards

Amy

Community Support Team _ Amy

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

View solution in original post

3 REPLIES 3
v-xicai
Community Support
Community Support

Hello @mibu ,

You can create a calculated column as DAX below.

Group ASP =
SWITCH (
    TRUE (),
    Table1[ASP] >= 0
        && [ASP] < 300, "A ($0-299) ",
    Table1[ASP] >= 300
        && [ASP] < 500, "A ($300-499) ",
    Table1[ASP] >= 500
        && [ASP] < 1000, "A ($500-999)",
    Table1[ASP] >= 1000, "A ($1000+)"
)

NOTE: The .pbix link you shared cannot be opened.

Best regards

Amy

Community Support Team _ Amy

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

mibu
Microsoft Employee
Microsoft Employee

Thanks for your reply!

All following files on Dropbox:

Pls see dev .pbix file here

Pls see FactSales Excel file here

Pls see Dimpbdev Excel file here

What I am trying to achieve is a calculated column... grouping ASP into four groups... that I can then create a connection to in Dimpbdev.

Thanks in advance for your help!

Best,

mibu

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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