Forum Discussion
NewbieJono
4 years agoPost Partisan
Difference in previous week
i have a table with a total snapshot on friday e.g 100. what dax would i need to show the increase or decrease from previous friday.
- 4 years ago
Hello there NewbieJono ! Imagining you are adding up the values for a column the Dax would be as follows:
Total_value = CALCULATE( SUM(Table[Column]), DATEADD(Date_Table[Date_Column], -7, DAY) )Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
sm_talha
4 years agoResolver II
You can add Relative Week column into your date table and calculate total snapshot for last week and current week then the difference between both weeks.
For Relative Week add following columns to date table:
StartOfWeek = DimDate[Date] - WEEKDAY(DimDate[Date],2) + 1
StartOfCurrentWeek = TODAY() - WEEKDAY(TODAY(),2) + 1
RelativeWeek = (DimDate[StartOfWeek] - DimDate[StartOfCurrentWeek])/7
Now can create a measure to calculate weekly difference:
WoW DIff =
WoW diff =
VAR past_week =
CALCULATE( [Total Cost], 'Date'[Relative Week] = -1 )
VAR cur_week =
CALCULATE( [Total Cost], 'Date'[Relative Week] = 0 )
RETURN
cur_week - past_week