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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
georgec96
Helper II
Helper II

Year on Year growth DAX measure

Hi guys sorry in advance if this is a silly questions I am still trying to get the grasp of DAX

I have the following dataset

StoreOrdered itemsPrice per itemDate ordered
AA89 £                    9.0001/01/2022
AA52 £                    9.0001/02/2022
AA66 £                    9.0003/03/2022
AA100 £                    9.0002/02/2022
BB6020 £                    9.0002/02/2022
BB2525 £                    9.0002/02/2022
BB1059 £                    9.0002/02/2022
BB10002 £                    9.0001/06/2019
CC512 £                    9.0001/05/2023
CC9999 £                    9.0001/01/2020
CC25 £                    9.0001/01/2001

 

I am trying to calculate year on year growth however I am not sure what I am doing wrong as I cant get it to work.

 

I have also created a calendar table and there is a relationship between them.

 

I am using the following formula and can't figure out what is wrong with it.

 

YearonYear= DIVIDE( SUMX('Aggregated data', 'Aggregated data'[Price per item] * 'Aggregated data'[Ordered qty]), CALCULATE( SUMX('Aggregated data', 'Aggregated data'[Price per item] * 'Aggregated data'[Ordered qty]), SAMEPERIODLASTYEAR('CALENDAR'[Date]) ) )

Any help would be much appreciated

1 REPLY 1
johnt75
Super User
Super User

Try

YearonYear =
VAR LastYear =
    CALCULATE (
        SUMX (
            'Aggregated data',
            'Aggregated data'[Price per item] * 'Aggregated data'[Ordered qty]
        ),
        SAMEPERIODLASTYEAR ( 'CALENDAR'[Date] )
    )
VAR ThisYear =
    SUMX (
        'Aggregated data',
        'Aggregated data'[Price per item] * 'Aggregated data'[Ordered qty]
    )
VAR Result =
    DIVIDE ( ThisYear - LastYear, LastYear )
RETURN
    Result

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.