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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
sublog
Helper III
Helper III

Same Store Sales Growth in Calculation Groups?

Hi all, working in Tabular Editor, I have created some calculation groups that measure YTD/MTD Year over Year growth %, but I would like to only calculate this for locations that had sales in the prior period/year. We've added many new locations in the past year and the growth numbers are obviously inflated because we've added 40 locations in the past 6 months. 

Here's what I am using today for my QTD calculation measure. 

 

 

Placeholder =
VAR CYQTD =
    CALCULATE (
        SELECTEDMEASURE (),
        CALCULATETABLE ( DATESQTD ( 'Calendar'[Date] ), 'Calendar'[IsPast] = TRUE () )
    )
VAR PYQTD =
    CALCULATE (
        SELECTEDMEASURE (),
        CALCULATETABLE (
            DATEADD ( DATESQTD ( 'Calendar'[Date] )-1YEAR ),
            'Calendar'[IsPast] = TRUE ()
        )
    )
VAR YOYQTD = ( CYQTD - PYQTD )
RETURN
    DIVIDE ( YOYQTDPYQTD )

3 REPLIES 3
amitchandak
Super User
Super User

@sublog , Assuming you have location[location] or table[location]

 

Change in your formula at the end

 

VAR YOYQTD = Sumx(values(Location[Location]), if(not(isblank(PYQTD)), ( CYQTD - PYQTD ), blank()))
RETURN
DIVIDE ( YOYQTD, PYQTD )

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Okay, I replaced the VAR YOYQTD = ( CYQTD - PYQTD ) section with what you gave me above, but the numbers are not correct? I assume you meant location as the table that contains my locations? 

Thank you, I will check on this and report back! 

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors
Top Kudoed Authors