Hello, I am looking at this Domo Card and the WOW Comp calculation looks incorrect.
Last Week Spend is $0 and Spend 2 weeks ago is also $0 but WOW is not 0%. Does anyone have any idea why this can be the case?
For reference:
LW Spend calculation:
sum((CASE WHEN ((FY Order
= 0) AND (Fiscal Week No
= (Current Week
- 1))) THEN Amount_Cost
END))
2 Weeks Ago Spend calculation:
sum((CASE WHEN ((FY Order
= 0) AND (Fiscal Week No
= (Current Week
- 2))) THEN Amount_Cost
END))
WOW Spend calculation:
((sum(case when Fiscal Week Index
=(Current Week Index
-1) then Amount_Cost
end))
(sum(case when Fiscal Week Index
=(Current Week Index
-2) then Amount_Cost
end)))
/
(sum(case when Fiscal Week Index
=(Current Week Index
-2) then Amount_Cost
end))