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 |
| HR | Transport | 200 |
| HR | Salary | 500 |
| HR | Team outing | 500 |
| HR | Transport | 500 |
| HR | Salary | 200 |
| HR | Team outing | 500 |
Tab 2
| Tower | Team | Spends |
| HR | Salary | 0 |
| HR | Team outing | 500 |
| admin | Transport | 200 |
| admin | Salary | 500 |
| Operations | Team outing | 0 |
| HR | Transport | 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.
2 Replies
- amitchandakSuper User
Universe24 , A new column in DAX
Sumx(filter(Table1, Table1[Tower] = Table2[Tower] && Table[Team] = Table2[Team]), Table1[Spend])
- AnonymousNot applicable
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.