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 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?
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:
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
@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
Hey @amitchandak First of all love your channel, always find in it something new to learn.
Second, I received this message:
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.