The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Community, Wonder if you could help me,
Within AR i'm looking show the total ocverdue within the below, currently i'm using a measure to determine the age of the debt by days and then actergorising them to 61+ , 60 - 31 days etc as per below, what i'm trying to do is total the overdue values (61 + through to 7-0 columns) and have this within the total overdue column
I've looked at inserting a template to sum each date range but that's not quite working , below is showing how the days macth the range but a bit lost to show how sum teh of the overdue witthin the above
Any help would be massively apprciated and if you know of where to look on the net to help improve my dax knwoledge would be great also
Many thanks
Chris
Solved! Go to Solution.
Hi @CWhite82
For your question, here is the method I provided:
Here's some dummy data
"Table"
You can create a measure.
Total ocverdue =
CALCULATE(
SUM('Table'[ocverdue]),
FILTER(
'Table',
'Table'[Sector] = MAX('Table'[Sector]) // Grouped by Sector
&&
'Table'[Cash Overdue Range] IN {"0-7", "8-15", "16-30", "31-60", "61+"}
)
)
If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @CWhite82
For your question, here is the method I provided:
Here's some dummy data
"Table"
You can create a measure.
Total ocverdue =
CALCULATE(
SUM('Table'[ocverdue]),
FILTER(
'Table',
'Table'[Sector] = MAX('Table'[Sector]) // Grouped by Sector
&&
'Table'[Cash Overdue Range] IN {"0-7", "8-15", "16-30", "31-60", "61+"}
)
)
If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try this:
SUMX(FILTER(WhateverYourTableIsCalled[Cash Overdue Range] in {"61+", "60 - 31", "30 - 16", "15 - 8", "7 - 0"}), [WhateverYourOverdueAmountColumnisCalled])
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
24 | |
14 | |
13 | |
8 | |
8 |