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
Hi all,
I n my model I got a "Date Table", "Product Table", a fact table with "Sold qty" by date and by product and then I got anothe table with all the "Product Unit cost" by product, by date.
I would like to find the best way to calculate "Sold Qty * Unit cost" over time.
What's the best solution in terms of data modelling/ dax?
thank you everyone.
, If continuous dates are available, then you can merge tables in Power Query (Select multiple columns by pressing ctrl) and get cost column in fact. You can do the same by below columns in Fact Table.
New column =
maxx(filter(Price , Fact[product id] = Price[product id] && Fact[Date] = Price[Date]), Price[Price])
(OR)
New column =
var _1 = maxx(filter(Price , Fact[product id] = Price[product id] && Fact[Date] <= Price[Date]), Price[Price])
return
maxx(filter(Price , Fact[product id] = Price[product id] && Fact[Date] = _1 ), Price[Price])
Hello @Uspace87 ,
in the data modeling you will be having the date and product tables linked to both facts, and calculate a dax measure to see sold qty from fact table * the unit sold from the second fact table.
you then display the measure with respect to the product from the product table.
Proud to be a Super User! | |
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 |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |