This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have tried to search for other topics regarding this problem, but can't seem to get any of them to work.
I want to find the average amount of units sold per month per SKU in my DATA table.
This is my table
And this is some of the data
Do anyone has a smart way to do this?
hi @RVBIBS
try to
1) add column with this:
It is safest to build a star schema rather than one flat table. You want to add a proper date table, marked as a date table, and you should also have a separate table for your SKUs, which you could create like
SKU Table = SUMMARIZE('Table', 'Table'[SKU], 'Table'[Item name])
Link both the SKU table and the date table in one-to-many relationships to your fact table, and always use columns from these tables on your visuals and in filters and slicers.
You can then create a measure to show the average quantity like
Avg Quantity = AVERAGE('Table'[Quantity])
You can put this measure into visuals with columns from your SKU and date tables and it will show you the averages broken down by whatever you choose.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 7 | |
| 6 | |
| 6 |