Forum Discussion
Jayadev
Helper I
8 years agoSummarising 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
Helper I
8 years agoThanks a lot, it works fine.
v-ljerr-msft
Microsoft Employee
8 years agoHi Jayadev,
Great to help! Could you accept my reply above as solution to close this thread? :smileyhappy:
Regards