I am want to build a Debtors aging report based on the past blogs, but the dynamic grouping isn’t quite working and I am not sure why.
All the invoices are being put into the “Current” bucket, but, based off the aging there should be amounts in all the buckets, do you know what I am doing wrong? See the “grouped aging buckets” vs the aging classification using a switchtrue formula Test Debtors Aging Report.pbix (11.7 MB)
Thanks for your time. I have read a couple of the answers on the dynamic groupings but they didnt quite help me out.
Hi @Juju, while waiting for other members to jump in, I suggest using the forum search to discover tutorial videos on dynamic grouping. You may find the videos here:
Thanks for your reply! Sorry, I was a bit unclear, the switch true formula is putting the buckets correctly, this was a test measure to see if the “Receivables per Bucket” measure was working ok.
You can see in the left hand table that all the vouchers are being grouped as current using the
Receivables Per Group =
CALCULATE( ‘Aging Measures’[Amount],
FILTER( FactAccountsReceivable,
COUNTROWS(
FILTER( ‘Aging Groups’,
[Days over] <= ‘Aging Groups’[Min] &&
[Days over] >= ‘Aging Groups’[Max] ) ) > 0 ) )
vs the aging on the right hand table.
Do you know why this would be?
Basically trying to recreate the dynamic grouping in Sam’s video per the links
Thank you!
HI @pranamg , did you happen to have any thoughts on the above? Ideally the table on the left would have 4 columns rather than everything being put into the “current” bucket? Thank you!
In order to achieve the results based on the criteria that you’ve specified. Below is the measure alongwith the screenshot of the final results provided for the reference -