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

Append table with column from calculateTable.

I have the following table. I want use it to calculate the difference between the revenue of a given date, and that same date but one year ago, as to eventually create a visual in which I compare the revenue of Aug 2022 to Aug 2021, for instance.

robertvdleeuw_0-1662037153227.png

 

I have the following DAX expression for this:

    Revenue Growth =
    VAR prevDate = DATEADD('Growth Metrics'[Date], -1, YEAR)
    VAR diff =
        SELECTCOLUMNS(
            CALCULATETABLE('Growth Metrics', 'Growth Metrics'[Date] = prevDate),
            "Date", 'Growth Metrics'[Date],
            "Revenue Growth", 'Growth Metrics'[Revenue] - [Revenue])
    RETURN
        diff['Revenue Growth']

The problem is that I cannot access 'Revenue Growth' from diff like this. How can I append the existing table with this column?
Date is added in there because I tried using LOOKUPVALUE(), but to no avail.
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@robertvdleeuw , with help from date table you can have measure like

 

Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))
Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),SAMEPERIODLASTYEAR('Date'[Date]))

 

diff = SUM(Sales[Sales Amount]) - [Year behind Sales]

 

Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s

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

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@robertvdleeuw , with help from date table you can have measure like

 

Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))
Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),SAMEPERIODLASTYEAR('Date'[Date]))

 

diff = SUM(Sales[Sales Amount]) - [Year behind Sales]

 

Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s

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

Hey, thanks for the help. The measure seems to be working reporting the right data, (essentially all sales - all of the most recent year). However, the measure reverts to (BLANK) once I try to select a daterange using a slicer.


Perhaps I should've made my goal a bit clearer. I currently have the table below to show changes in revenue each month and year, but I want to change this to revenue growth in comparison to last year. 

robertvdleeuw_0-1662049955341.png

Is there a way to get this done using this measure? Right now, using the measure shows this:

robertvdleeuw_1-1662050048247.png

 

 

Nevermind, I didn't have any type of link established between 2 date columns in separate tables. The measure works perfectly now!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

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.