Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi there,
I have the following scenario:
For the measure Historical Overdue I need a measure that counts all values for which the Due Date was exceeded at that moment and which were not yet set (fully paid and written off), the latter can be seen from the closed date. So the date> Due Date <Closed Date, if the Closed date is 1-1-1900 then the post is still open and therefore only date> Due date
My measure looks like this:
Solved! Go to Solution.
Please try this instead
Historical Overdue Receivable =
VAR CurrentDate =
MAX ( 'Dimension Date'[DateValue] )
VAR Overdue =
CALCULATE (
SUM ( 'Fact Receivable'[Receivable Amount EUR] ),
ALL ( 'Dimension Date'[DateValue] ),
'Dimension Date'[DateValue] <= CurrentDate,
FILTER (
ALL (
'Fact Receivable'[Receivable Due Date],
'Fact Receivable'[Receivable Closed Date]
),
'Fact Receivable'[Receivable Due Date] > CurrentDate
|| YEAR ( 'Fact Receivable'[Receivable Closed Date] ) = 1900
),
USERELATIONSHIP ( 'Dimension Date'[DateValue], 'Fact Receivable'[Receivable Due Date] )
)
RETURN
Overdue
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Please try this instead
Historical Overdue Receivable =
VAR CurrentDate =
MAX ( 'Dimension Date'[DateValue] )
VAR Overdue =
CALCULATE (
SUM ( 'Fact Receivable'[Receivable Amount EUR] ),
ALL ( 'Dimension Date'[DateValue] ),
'Dimension Date'[DateValue] <= CurrentDate,
FILTER (
ALL (
'Fact Receivable'[Receivable Due Date],
'Fact Receivable'[Receivable Closed Date]
),
'Fact Receivable'[Receivable Due Date] > CurrentDate
|| YEAR ( 'Fact Receivable'[Receivable Closed Date] ) = 1900
),
USERELATIONSHIP ( 'Dimension Date'[DateValue], 'Fact Receivable'[Receivable Due Date] )
)
RETURN
Overdue
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
50 | |
45 | |
38 | |
38 |