Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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

  • Anonymous's avatar
    Anonymous
    3 years ago

    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:

     

    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

2 Replies

  • Anonymous's avatar
    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:

     

    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's avatar
      Anonymous
      Not applicable

      Thi worked, Thanks