Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi!
I have searched for a solution for a long time now but can't find. Therefor I post my question here.
My goal is to multiply two columns from two different tables but I want the Total of my measure to only summarize the column of my new measure.
As shown in picture below I want the sum of Recalculated forecost to sum upwards in the column of my measure.
Thanks for your help!
Solved! Go to Solution.
Hi @Anonymous
1. Create a 1-to-many relationship between Table1[Product] and Table2[Product]
2. Place Table1[Product] in a table visual
3. Place this measure in the visual
Measure =
SUMX (
NATURALINNERJOIN ( Table1, Table2 ),
Table1[Forecast] * Table2[Conversion factor]
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Anonymous
1. Create a 1-to-many relationship between Table1[Product] and Table2[Product]
2. Place Table1[Product] in a table visual
3. Place this measure in the visual
Measure =
SUMX (
NATURALINNERJOIN ( Table1, Table2 ),
Table1[Forecast] * Table2[Conversion factor]
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
@Anonymous , Create a common product dimension table and then create a measure like
Sumx(Values(Product[product]), Sum(Table1[Forecast]), Sum(Table2[Conversion Factor]))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.