Forum Discussion
Universe24
3 years agoFrequent Visitor
Column values into other table
Hello Experts, I have below two tables. I want to insert table 1 HR spends into table 2 HR spends where they are 0 Tab 1 Tower Team Spends HR Salary 20 HR Team outing 500 ...
- Anonymous3 years ago
Hi Universe24 ,
I think you can try code as below.
New Spends = IF ( Table2[Spends] = 0, SUMX ( FILTER ( Table1, Table1[Tower] = Table2[Tower] && Table1[Team] = Table2[Team] ), Table1[Spends] ) + 0, Table2[Spends] )Result:
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
3 years agoSuper User
Universe24 , A new column in DAX
Sumx(filter(Table1, Table1[Tower] = Table2[Tower] && Table[Team] = Table2[Team]), Table1[Spend])