Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Receivables aging

Hi,

 

Below is a sample table for customer invoices. I have a calender table and would like to see the aging as of date using a slicer. Calculation of the buckets will be using the difference between the due date and selected date on the slicer. Already looked into the formus here but didn't exactly find what I need. If this has already been answered, please point me to the solution.

 

Customer CodeInvoiceAmountDue Date
PS-CR-1305INV00023                  2,8685/14/2023
PS-CR-0238INV00024                14,0652/15/2023
PS-CR-0238INV00025                  7,4441/2/2023
PS-CR-1220INV00026                  8,06612/29/2022
PS-CR-0519INV00027                  4,87112/29/2022
PS-CR-0791INV00028                  1,68612/23/2022
PS-CR-0519INV00030                  7,78212/22/2022

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Anonymous ,

 

Here are the steps you can follow:

1. Create measure.

Measure =
var _select=SELECTEDVALUE('calender table'[Date])
return
DATEDIFF(_select,MAX('Table'[Due Date]),DAY)

2. Result:

vyangliumsft_0-1670900096759.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @Anonymous ,

 

Here are the steps you can follow:

1. Create measure.

Measure =
var _select=SELECTEDVALUE('calender table'[Date])
return
DATEDIFF(_select,MAX('Table'[Due Date]),DAY)

2. Result:

vyangliumsft_0-1670900096759.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Anonymous
Not applicable

Thi worked, Thanks

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.