Forum Discussion
Jayadev
8 years agoHelper I
Summarising values from two tables
Hi, I have two tables where in Bills are stored in one table & payments are in another table, need to create a new table with following information. Both tables are in data model, I need to...
- 8 years ago
Hi Jayadev,
Based on my test, the formula(DAX) below should work in your scenario. :smileyhappy:
Table = SUMMARIZE ( Table1, Table1[Bill Date], Table1[Key], "Amount", SUM ( Table1[Amount] ), "Received", SUM ( Table2[Received] ), "Remaining", SUM ( Table1[Amount] ) - SUM ( Table2[Received] ) )Regards
- 8 years ago
Hi Jayadev,
Great to help! Could you accept my reply above as solution to close this thread? :smileyhappy:
Regards
Jayadev
8 years agoHelper I
Thanks a lot, it works fine.
v-ljerr-msft
8 years agoMicrosoft Employee
Hi Jayadev,
Great to help! Could you accept my reply above as solution to close this thread? :smileyhappy:
Regards