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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
GJ217
Resolver III
Resolver III

Presenting diffrent rolling 12 month period figures in a table visual

The following measures show how many people left the business in the rolling 12 month period, however I need this to be presented in a table as below therefore need a way of combining the two Dax measures below into one measure if possible as I want to avoid 12 measures for each column in the table.

 

Would appreciate any help on this!!!

 

P1 Leavers Prev Rolling 12 Prev Month = 
CALCULATE(
    COUNTROWS(Leavers),
            FILTER(
                    ALL('Leavers'[TERMINATION DATE]),
                        Leavers[TERMINATION DATE] >= EOMONTH(TODAY(), - 13) +1
                         &&
                        Leavers[TERMINATION DATE] <= EOMONTH( TODAY(), -1)
)
) 
////Previous rolling 12 calendar months as of today 28/11/23 will show Nov 22 - Oct 23 total figures
P2 Leavers Prev Rolling 12 Prev Month = 
CALCULATE(
    COUNTROWS(Leavers),
            FILTER(
                    ALL('Leavers'[TERMINATION DATE]),
                        Leavers[TERMINATION DATE] >= EOMONTH(TODAY(), - 14) +1
                         &&
                        Leavers[TERMINATION DATE] <= EOMONTH( TODAY(), -2)
)
) 
////Previous period of previous rolling 12 calendar months as of today 28/11/23 shows Oct 22 - Nov 23 total figures.

Rolling 12 month Table .jpg

1 REPLY 1
amitchandak
Super User
Super User

@GJ217 , I have created a similar calculation here with a little bit of a difference

Average of Rolling, Average of Snapshots: https://youtu.be/_pZRdLAJxxA

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.