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
Rpxx
Regular Visitor

Average basket size containing SKU's

I have a table with ordered SKU's. One line is a one position on one order. In one order client can buy many different SKU's. I'd like to calculate and analize average basket size (value) included next SKU's. Could you help me?

 

For example for SKU 01111 it will be (order 001) SUM=6; (order 003)  SUM=16, so avg order is (16+6)/2=11

 

Date| No of order| SKU| Value
2022-12-01| 001| 02222| 2
2022-12-01| 001| 01111| 4
2022-12-01| 002| 02222| 10
2022-12-01| 003| 02222| 3
2022-12-01| 003| 04444| 2
2022-12-01| 003| 06666| 9
2022-12-01| 003| 01111| 2
2022-12-02| 004| 02222| 4
2022-12-02| 005| 03333| 2
2022-12-02| 005| 04444| 7
2022-12-02| 005| 01111| 4
2022-12-02| 006| 05555| 7

 

SKU| Avg basket size with SKU
011111| 11
022222| ?
1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Rpxx ,

 

Here are the steps you can follow:

1. Create measure.

Avg basket size with SKU =
var _column=SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date])&&'Table'[SKU]=MAX('Table'[SKU])),"1",[No of order])
var _count=
CALCULATE(DISTINCTCOUNT('Table'[No of order]),FILTER(ALL('Table'),
'Table'[SKU]=MAX('Table'[SKU])&&'Table'[Date]=MAX('Table'[Date])))
var _sum=
SUMX(FILTER(ALL('Table'),'Table'[No of order] in _column&&'Table'[Date]=MAX('Table'[Date])),[Value])
return
DIVIDE(_sum,_count)

2. Result:

vyangliumsft_0-1670549632093.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

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @Rpxx ,

 

Here are the steps you can follow:

1. Create measure.

Avg basket size with SKU =
var _column=SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date])&&'Table'[SKU]=MAX('Table'[SKU])),"1",[No of order])
var _count=
CALCULATE(DISTINCTCOUNT('Table'[No of order]),FILTER(ALL('Table'),
'Table'[SKU]=MAX('Table'[SKU])&&'Table'[Date]=MAX('Table'[Date])))
var _sum=
SUMX(FILTER(ALL('Table'),'Table'[No of order] in _column&&'Table'[Date]=MAX('Table'[Date])),[Value])
return
DIVIDE(_sum,_count)

2. Result:

vyangliumsft_0-1670549632093.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

This is my expected result. Could you help me? Date is not important...

Rpxx_1-1671449249955.png

 

 

Could you describe what is the next steps to calculate these numbers in your file? I don't understand...

Rpxx_0-1671443642486.png

 

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