Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello, I have two tables.
In first table I have multiple Man.Model repeated N times.
In second table I also have Man.Model, but repeated once.
Product table:
Unit Price table:
I am trying to create New Measure, which will be counting Total Price = Product[Count_of Man.Model] * Unit Price[Unit Price]
I have placed simple Table visual in my report with filter by Date expire and I need above Measure to be recalculated every time, when filter changes
Solved! Go to Solution.
@Salauat , if there is one to many relation then you can try like
Total Price =sum( Product[Count_of Man.Model] )* maxx(Product, related(Unit Price[Unit Price]))
else refer these ways to copy value from one table to another : https://www.youtube.com/watch?v=czNHt7UXIe8
@Salauat , if there is one to many relation then you can try like
Total Price =sum( Product[Count_of Man.Model] )* maxx(Product, related(Unit Price[Unit Price]))
else refer these ways to copy value from one table to another : https://www.youtube.com/watch?v=czNHt7UXIe8
@amitchandak Seems the formula you provided is not calculating the total correctly.
It multiplies Count * Unit_Price, but the overall rows total is not correct, it's way too huge
Hello @amitchandak !
Thank you, the correct formula that worked for me is below:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |