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
Anonymous
Not applicable

How to create multiple Ranges in Dax (average unit prices)

I've got a table with the below headers....

Ukfan123_0-1668730185179.png

 

I will post a sample file if needed, I just thought this potentially could be easy for the experts here 🙂

All I want to do is create another column that divides the "pos value" by "pos units" for each row (style) which gets me.... "Average Unit Price"

Then I would like another column to allow me to create ranges for this column below

$0-$5
$5.01-$10
$10.01-$20
>$20

My end goal is to compare $ sales from each of these Average Unit Price ranges

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

I created some data:

vyangliumsft_0-1669015261373.png

Here are the steps you can follow:

1. Create calculated column.

Divide =
DIVIDE([POS Units],[POS Value])
Avg =
AVERAGEX(FILTER(ALL('Table'),'Table'[style]=EARLIER('Table'[style])),[Divide])
ranges =
SWITCH(
    TRUE(),
    [Avg]>=0&&[Avg]<=5,"$0-$5",
    [Avg]>=5.01&&[Avg]<=10,"$5.01-$10",
    [Avg]>=10.01&&[Avg]<=20,"$10.01-$20",
    ">$20")

2. Result:

vyangliumsft_1-1669015261375.png

 

Best Regards,

Liu Yang

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

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

I created some data:

vyangliumsft_0-1669015261373.png

Here are the steps you can follow:

1. Create calculated column.

Divide =
DIVIDE([POS Units],[POS Value])
Avg =
AVERAGEX(FILTER(ALL('Table'),'Table'[style]=EARLIER('Table'[style])),[Divide])
ranges =
SWITCH(
    TRUE(),
    [Avg]>=0&&[Avg]<=5,"$0-$5",
    [Avg]>=5.01&&[Avg]<=10,"$5.01-$10",
    [Avg]>=10.01&&[Avg]<=20,"$10.01-$20",
    ">$20")

2. Result:

vyangliumsft_1-1669015261375.png

 

Best Regards,

Liu Yang

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

amitchandak
Super User
Super User

@Anonymous , Assume you have column price then you van have a new column

 

Switch( True(),

[Price] <= 5, "  $0-$5",
[Price] <= 10, " $5.01-$10",
[Price] <= 20, "$10.01-$20",
">$20"

)

 

If you need that on measure refer

Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1387187#M626


Dynamic Segmentation, Bucketing or Binning: https://youtu.be/CuczXPj0N-k

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.