Forum Discussion
Debtors Days DAX Calculation
- 5 years ago
Hi deniseg ,
'Month Year Date'[Date] is the date column of a marked date table. And Try the following formula:
Average Receivables = CALCULATE( AVERAGE('AR v AP Database'[Amount]), DATESINPERIOD( 'Month Year Date'[Date], LASTDATE('AR v AP Database'[Date]), -2, MONTH ), FILTER( ALL('AR v AP Database'), 'AR v AP Database'[AR v AP] = "AR" ), GROUPBY('AR v AP Database','AR v AP Database'[AR v AP]) )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi deniseg ,
'Month Year Date'[Date] is the date column of a marked date table. And Try the following formula:
Average Receivables =
CALCULATE(
AVERAGE('AR v AP Database'[Amount]),
DATESINPERIOD( 'Month Year Date'[Date], LASTDATE('AR v AP Database'[Date]), -2, MONTH ),
FILTER(
ALL('AR v AP Database'),
'AR v AP Database'[AR v AP] = "AR"
),
GROUPBY('AR v AP Database','AR v AP Database'[AR v AP])
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you, this worked for me!