Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I have the following tables:
Sales with column ProductID, among others
Products with columns ProductID and Price among others.
I need to create a visual that will take the Revenue.
My question is how do I take the Price from the related table?
The same product can appear multiple times in the Sales table and I need to sum this Revenue.
Solved! Go to Solution.
Didn't work for me.
But I figured it out by creating a new column in the Orders table
RevenuePerSale = 'Sales'[Quantity] * related(Products[Item Price])
And then the desired measure: Revenue ($) = sum(Sales[RevenuePerSale])
It's ok to create NEW column, when you don't have much data.
In case you have a lot of data, it will increase storage volume, and, perhaps, slow down calculations.
instead, Try the only measure:
Revenue = sumx( addcolumns( 'Sales'; "new column"; 'Sales'[Quantity] * related(Products[Item Price])); [new column])
Mesaure seems to work well in a table with small dataste. However it takes ages in matrix.
Is there another way which maybe works fatser.
This is the measure I'm using as per your suggetion
and image shows my tables
hi
use this measure:
Revenue = Sum(Sales[Units])*sum('Product'[Price])
And in a visual insert Product (from Product Table) and Revenue.
Didn't work for me.
But I figured it out by creating a new column in the Orders table
RevenuePerSale = 'Sales'[Quantity] * related(Products[Item Price])
And then the desired measure: Revenue ($) = sum(Sales[RevenuePerSale])
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
67 | |
42 | |
42 |
User | Count |
---|---|
46 | |
40 | |
28 | |
26 | |
25 |