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
Anonymous
Not applicable

Rolling 12 months calculation

I would like to create a column that takes TRUE for all those values that are returned within the rolling months as of the previous month. So for example, we are in August 2018, I would need the column to give a true for all those values from July 2017 to July 2018. Similarly, in September 2018, it would need to be August 17 - August 18

3 REPLIES 3
v-yuta-msft
Community Support
Community Support

Hi Akshaya,

 

As a general solution, you can create a measure using this pattern:

 

VAR Previous_Month =
EDATE ( MAX ( Table[Date] ), -1 )
VARPrevious_12_Month =
EDATE ( MAX ( Table[Date] ), -13 )
RETURNResult =
CALCULATE (
    Your_Aggregation_Here,
    FILTER (
        Table,
        Table[Date] >= Previous_Month
            && Table[Date] <= Previous_12_Month
    )
)

Regards,

Jimmy Tao

 

Anonymous
Not applicable

Hey,

 

I'm not quite sure as to what would go under "Your_Aggregation_Here". Also, would this result in a TRUE or FALSE value?

 

I would want the Flag column that I am creating to look like this:

 

Flag   Year     Month  Day

0        2017    Jan        15

0        2017    Jan         16

.

.

.

1       2017    July        1

1       2017    July         2

.

.

.

1      2018      July         31

 

 

Similarly, once we go to August 2018, Flag should be 1 from August 1, 2017 - August 31, 2018

Anonymous
Not applicable

Thank you. So the part "your_aggregation_here" is the variable name that I would create right?

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.