Forum Discussion
12-month rolling calculation with another moving date variable (Second Attempt - More Description)
Hi Folks,
Using September 2021 RS desktop.
I'm trying to build a measure for 12-month rolling costs, which seemed to work out.
CostR12 =
Var SelectedMaxDate = MAX ('Claims Costs Transactions'[DatePaidOrAuthorized])
Var MinDate =
CALCULATE (
MIN ( 'Date'[Date] ),
FILTER (
ALL ( 'Date' ),
DATEADD (
'Date'[Date],
1,
YEAR
) > SelectedMaxDate
)
)
Return
CALCULATE (
SUM ( 'Claims Costs Transactions'[Amount] ),
ALL ( 'Date' ),
'Date'[Date] <= SelectedMaxDate,
'Date'[Date] >= MinDate
)
However, I also required the measure to be categorized by another measure which also has a date variable. IF the sum of a field in another table is >=180, the costs should be labeled "Yes". I built a table measure to determine if a 'ReferenceNu' has accumulated enough NbDays by the end of a period.
Claim Days Paid =
Var SelectedMaxDateDaysPaid = MAX ('Date'[Date])
Return
CALCULATETABLE(
SUMMARIZE(
'Days Lost Transactions',
'Days Lost Transactions'[ReferenceNu],
"Total Days Paid", SUM('Days Lost Transactions'[NbDays]),
"180 Day Claim", IF(SUM('Days Lost Transactions'[NbDays])>=180,"Yes","No")
),
FILTER(
'Days Lost Transactions',
'Days Lost Transactions'[DatePaidOrAuthorized] <= SelectedMaxDateDaysPaid
),
FILTER(
'Days Lost Transactions',
'Days Lost Transactions'[PaymentGroupCD] = "COMP"
))
It isn't working though, and applies the latest result for all periods. For example, for the referencenumber in the image above we should be seeing the result in the table below. As that reference number hasn't acumulated 180 days until Q2 2022.
| Year Quarter | ReferenceNu | 180 Day Claim |
| Q4 2021 | 20212866 | No |
| Q1 2022 | 20212866 | No |
| Q2 2022 | 20212866 | Yes |
Here is my model:
What's the best approach?
Thanks for taking the time to read through this.
5 Replies
- SebLFrequent Visitor
I referred to "The image above", but it didn't load. Here is the example I'm getting from the current measure.
- Ashish_MathurSuper User
Hi,
Share the link from where i can download your PBI file and show the expected result very clearly.
- SebLFrequent Visitor
Hi Ashish,
Here's a link for the .pbix file I'm working with.https://drive.google.com/file/d/1pJ-66sbkMXtZs6eM_3-xpHhcrqRrnyqJ/view?usp=sharing
- Ashish_MathurSuper User
Your CostR12 measure can be simplified (even though that may be giving you the correct answer). Please explain what you want to calculate via that measure. Then we will go to answering your actual question asked.