Forum Discussion
JoZu
4 years agoFrequent Visitor
Summarizing Accounts Receivable Data to show Net Balance Value per Invoice ID
Hi everyone First of all I'd like to mention, that I am rather new to PowerBI and I am reading a LOT (!) in this forum. The posts are very helpful and solved already numerous issues I faced. Howev...
- 4 years ago
HI JoZu
Here is a sample file with the solution https://we.tl/t-BJ0BtLRpwWDue Transation Currency = SUMX ( SUMMARIZE ( 'Accounts Receivable', 'Accounts Receivable'[Customer Invoice ID],'Accounts Receivable'[Due Date Calendar Date] ), CALCULATE ( VAR CurrentDueDate = SELECTEDVALUE ( 'Accounts Receivable'[Due Date Calendar Date] ) RETURN IF ( CurrentDueDate <= TODAY ( ) && CurrentDueDate <> BLANK ( ), CALCULATE ( SUM ( 'Accounts Receivable'[Balance in Transaction Currency] ), ALLEXCEPT ( 'Accounts Receivable', 'Accounts Receivable'[Customer Invoice ID] ) ) ) ) )
JoZu
4 years agoFrequent Visitor
Thank you very much tamerj1 ! The measure works perfectly fine and does what its supposed to! I forgot to mention, that the date restriction was done with a filter on the visual. You even included this into the measure - even better.
I am more than happy with this solution and the very fast reply - THANKS!