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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
vytas
Helper I
Helper I

Debt Aging

Hello 

 

 I have table  G7Ab7CF.png

 and want to write a measure Debt Age in  Days which is how much sales days fit in Accounts Recievable. 

For example - 2015-01-09 accounts recievable is 109 and it is 9 days of sales. 
Measure should be - take accounts recievable  at any day and  go backwards on sale untill  sales sum reach debt sum then count how much it was sale days. 

 

Thank You  

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @vytas 

 

Based on your description, I created data to reproduce your scenario.

Table:

f1.png

 

You may create a measure as below.

Debt Age in  Days = 
var _accountsrecievable = SELECTEDVALUE('Table'[AccountsRecievable])
var _date = SELECTEDVALUE('Table'[Date])
return
IF(
    _accountsrecievable = 
    CALCULATE(
        SUM('Table'[Sales]),
        FILTER(
            ALLSELECTED('Table'),
            'Table'[Date]<=_date
        )
    ),
    COUNTROWS(
        FILTER(
            ALLSELECTED('Table'),
            'Table'[Date]<=_date
        )
    )
)

 

Result:

f2.png

 

Best Regards

Allan

 

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

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hi, @vytas 

 

Based on your description, I created data to reproduce your scenario.

Table:

f1.png

 

You may create a measure as below.

Debt Age in  Days = 
var _accountsrecievable = SELECTEDVALUE('Table'[AccountsRecievable])
var _date = SELECTEDVALUE('Table'[Date])
return
IF(
    _accountsrecievable = 
    CALCULATE(
        SUM('Table'[Sales]),
        FILTER(
            ALLSELECTED('Table'),
            'Table'[Date]<=_date
        )
    ),
    COUNTROWS(
        FILTER(
            ALLSELECTED('Table'),
            'Table'[Date]<=_date
        )
    )
)

 

Result:

f2.png

 

Best Regards

Allan

 

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

amitchandak
Super User
Super User

@vytas , What is formula for this

camargos88
Community Champion
Community Champion

Hi @vytas ,

 

Does it work if you use the DAY function on your date sales ?

 

Did I answer your question? Mark my post as a solution!
Ricardo



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



No, it's just match in example.  Measure should be - take accounts recievable sum at any day and  go backwards on sale untill  sales sum reach debt sum then count how much it was sale days. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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