Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Week over Week Change

Hi,

I am trying to create a week over week change formula based on max week start date

I have this as the current week: sum ({<[Week Start Date]= {'$(=Max([Week Start Date]))'}>} [2015 Actual])

and I tried this as the previous week: sum ({<[Week Start Date]= {'$(=Max([Week Start Date])-7)'}>} [2015 Actual]) which is returning nothing.

I'm guessing I have the minus 7 in the wrong spot?

I would then divide the two and subtract 1 to get WoW change

2 Replies
MK_QSL
MVP
MVP

sum ({<[Week Start Date]= {'$(=Date(Max([Week Start Date])))'}>} [2015 Actual])


sum({<[Week Start Date] = {"$(=Date(Max([Week Start Date])-7))"}>}[2015 Actual])

Not applicable
Author

This is still returning nothing (only for the -7 one)