Forum Discussion
Anonymous
2 years agoNot applicable
Receivable Balance Measure
Hello - Having trouble with arriving at the Receivable Balance calculation Measure. Goal is to provide the Balance of Customer as of a particular Historical date . I tried using the measure to cal...
- 2 years ago
Hi Anonymous ,
You can simply your calculation but using the related calendar table instead of the facts table in your measure so for balance, that would be
CALCULATE ( SUM ( InvTable[Value] ) + SUM ( RcptTable[Value] ), FILTER ( ALL ( 'Calendar' ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) ) )What I don't get is your current month number for CUS1. Per data, that should be 2000 and not 2100 (3500-1500).
Please see attached pbix for details.
danextian
2 years agoSuper User
Hi Anonymous ,
You can simply your calculation but using the related calendar table instead of the facts table in your measure so for balance, that would be
CALCULATE (
SUM ( InvTable[Value] ) + SUM ( RcptTable[Value] ),
FILTER ( ALL ( 'Calendar' ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) )
)
What I don't get is your current month number for CUS1. Per data, that should be 2000 and not 2100 (3500-1500).
Please see attached pbix for details.
- Anonymous2 years agoNot applicable
Thanks danextian .You are right. It is 2000. Good solution.