Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello
I have table
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
Solved! Go to Solution.
Hi, @vytas
Based on your description, I created data to reproduce your scenario.
Table:
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:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @vytas
Based on your description, I created data to reproduce your scenario.
Table:
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:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
144 | |
73 | |
64 | |
52 | |
51 |
User | Count |
---|---|
208 | |
91 | |
62 | |
59 | |
56 |