Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I am actually working on an AR ageing report.
My data model is as follows: I have a AR transaction table with the amount, with a Date filed related to a calendar table.
So far, I have managed to get the ageing as at today. I have added a calculated column, to calculate the age of the transaction and have used this measure to make it work:
Hi Akhtar.
i think it's not possible to have a dynamic column that respond to a slicer.
but if you want to have calculated column.
then you can create a crossjoin calculated table that consist a calendar and age group.
something like this formula:
Summary AR =
var tblCalendar = SELECTCOLUMNS('Calendar', "Date", 'Calendar'[Date])
var tblAgeingGroup = SELECTCOLUMNS('Ageing Group', "Age Group", 'Ageing Group'[Age Group])
var tblClient = SELECTCOLUMNS(Client, "DCLink", Client[DCLink])
return CROSSJOIN(tblCalendar,tblAgeingGroup,tblClient)
then you can add calculated column for each reporting date, age group and client either to count number of transactions and amount.
finally, create a relationship between your calendar table with new summary AR table.
-
Can you provide sample data or a mock-up PBIX file?
Proud to be a Super User!
Paul on Linkedin.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |