Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Moving sum last 12 month

last 12 month.PNG
hii
I want to find last 12 month sum from selected month if i am in Dec -17 then last 12 month person count (count of personnel number) again same for nov-17 is selected then that month and last 12 month count of personnel number count sum like wise .......

1 ACCEPTED SOLUTION
Anonymous
Not applicable

For this to work, you need a SERIAL ID column for the months in your calendar table.

 

A serial ID will start at 1, but will increase by 1 for each month, and NOT reset after 12.

 

For example, if your calendar starts in January 2016, then that month ID = 1.  January 2017's month ID = 13.

 

Assuming that column exists in your calendar table, (and the column is called [MonthID]), this is the formula:

 

Measure =
CALCULATE (
    SUM ( TableName[ColumnName] ),
    FILTER (
        ALL ( Calendar ),
        Calendar[MonthID] <= MAX ( Calendar[MonthID] )
            && Calendar[MonthID]
                >= MAX ( Calendar[MonthID] ) - 11
    )
)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

For this to work, you need a SERIAL ID column for the months in your calendar table.

 

A serial ID will start at 1, but will increase by 1 for each month, and NOT reset after 12.

 

For example, if your calendar starts in January 2016, then that month ID = 1.  January 2017's month ID = 13.

 

Assuming that column exists in your calendar table, (and the column is called [MonthID]), this is the formula:

 

Measure =
CALCULATE (
    SUM ( TableName[ColumnName] ),
    FILTER (
        ALL ( Calendar ),
        Calendar[MonthID] <= MAX ( Calendar[MonthID] )
            && Calendar[MonthID]
                >= MAX ( Calendar[MonthID] ) - 11
    )
)
Anonymous
Not applicable

@Anonymous thank you this works very well....

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.