Hi, Guys, I have one table for sales and one table for products. I need to calculate the total sales of the orders that contain the products on the product table. How I can do that using DAX?
Thanks as always!
MikeOrder_Total.pbix (233.2 KB)
Hi, Guys, I have one table for sales and one table for products. I need to calculate the total sales of the orders that contain the products on the product table. How I can do that using DAX?
Thanks as always!
MikeOrder_Total.pbix (233.2 KB)
Hi @Mike
Please see below DAX if it serves the purpose.
Total Sales =
CALCULATE (
SUMX (
Sales,
Sales[Sales Amount]
),
FILTER(
Sales,
RELATED( SKU[SKU] )
)
)
Hi @Mike, did the response provided by the contributors help you solve your query? If not, how far did you get, and what kind of help you need further? If yes, kindly mark the thread as solved. Thanks!