Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
netanel
Post Prodigy
Post Prodigy

How do you multiply a column from one table by a column from another table?

Hello everyone!
I have two tables Table 1 and Table 2
How do I multiply a column value from table 1 by a column value 2 from table 2?

 

 

Help.PNG








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki
4 REPLIES 4
Anonymous
Not applicable

Hi @netanel 

You can create a column to return the values of Table1[Value]* Table2[Value]

Column = CALCULATE(MAX(Table1[Value])*MAX(Table2[Value]),FILTER(Table1,Table1[Name]=Table2[Name]))

 

The effect is as shown:

Ailsa-msft_0-1618391383027.png

Best Regards

Community Support Team _ Ailsa Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @Anonymous  Thanks for the response,
The formula does not work for me because I have many-to-many interactions between the two tables








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki
amitchandak
Super User
Super User

@netanel , Try

new column in Table 1 =
maxx(filter(Table2, Table2[Name] = table1[Name]), Table2[Value2]) *Table1[Value]

 

or

 

new column in Table 2 =
maxx(filter(Table1, Table2[Name] = table1[Name]), Table1[Value]) *Table2[Value2]

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hey @amitchandak First of all love your channel, always find in it something new to learn.
Second, I received this message:help 2.PNG








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors