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
pcray
Frequent Visitor

desktop - cumulative total

Hi

Is someone able to point me in the right direction

ive created a cumulative total for the last 12 months (rolling - see image)

I would like to create a second column to show the previous 12 months (shown with yellow marker)

this would then allow me to create calculations to understand % change between the two totals

thankslast 12 months.PNGoutput bi.PNG

2 ACCEPTED SOLUTIONS
Phil_Seamark
Employee
Employee

Hi @pcray

 

This might be close

 

Year L12Mths Prev = 
CALCULATE(
    [Year L12Mths]
    ,SAMEPERIODLASTYEAR('Dates'[Date])
    )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

v-jiascu-msft
Employee
Employee

Hi @pcray,

 

How about this one?

New =
CALCULATE (
    [total],
    DATESINPERIOD (
        dates[date],
        LASTDATE ( DATEADD ( 'dates'[Date], -12, MONTH ) ),
        -12,
        MONTH
    )
)

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-jiascu-msft
Employee
Employee

Hi @pcray,

 

How about this one?

New =
CALCULATE (
    [total],
    DATESINPERIOD (
        dates[date],
        LASTDATE ( DATEADD ( 'dates'[Date], -12, MONTH ) ),
        -12,
        MONTH
    )
)

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Phil_Seamark
Employee
Employee

Hi @pcray

 

This might be close

 

Year L12Mths Prev = 
CALCULATE(
    [Year L12Mths]
    ,SAMEPERIODLASTYEAR('Dates'[Date])
    )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

pcray
Frequent Visitor

Hi

Is someone able to point me in the right direction

ive created a cumulative total for the last 12 months (rolling - see image)

I would like to create a second column to show the previous 12 months (shown with yellow marker)

this would then allow me to create calculations to understand % change between the two totals

thanks

peterlast 12 months.PNGoutput bi.PNG

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.