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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
bidataservices
Frequent Visitor

Week on week change error

I have a table with dates, previous week value, current week value and week o week change value. I am trying to get week on week change % but cannot get it to work.

The measures I have are:

PreviousWeekValue =
VAR todaycost =CALCULATE(SUM(STOCK_AGING_BY_PARTNO[Value]),DATEADD(Stock_Age_Calendar[Date],0,DAY))
   
VAR LastWeek =
    CALCULATE (
        SUM ( STOCK_AGING_BY_PARTNO[Value] ),
        DATEADD(  Stock_Age_Calendar[Date],-7, DAY)
    )
RETURN
   LastWeek
 
 
CurrentWeekValue =
VAR todaycost =CALCULATE(SUM(STOCK_AGING_BY_PARTNO[Value]),DATEADD(Stock_Age_Calendar[Date],0,DAY))
   
VAR LastWeek =
    CALCULATE (
        SUM ( STOCK_AGING_BY_PARTNO[Value] ),
        DATEADD(  Stock_Age_Calendar[Date],-7, DAY)
    )
RETURN
   todaycost
 
 
Week_on_Week Change = [CurrentWeekValue] - [PreviousWeekValue]
 
Week_on_Week Change% = ([CurrentWeekValue] - [PreviousWeekValue])/[PreviousWeekValue]
 
All these work fine, except for the change%, which just returns NaN.
 
Can anybody throw some light on this please. What am I missing?
2 REPLIES 2
amitchandak
Super User
Super User

@bidataservices , Make sure Stock_Age_Calendar is calendar/date table and marked as date table

 

check

 

Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

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

It is already marked as a date table.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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