Forum Discussion
dogt1225
5 years agoHelper III
Fiscal Year Week over Week
I am looking to show the fiscal week over week change. The image below show the current data I am getting with my calculations, but there is an error at the start of a new Fiscal Year. The area I'v...
manikumar34
5 years agoSolution Sage
Try something like this
Submitted Previous Week =
Calculate(Req[Submitted Date (Count)],
FILTER(ALL('Calendar'),
if(WEEKNUM(MAX('Calendar'[Date]))=1,
'Calendar'[Fiscal Week Num] = Calculate(MAX('Calendar'[Fiscal Week Num]),ALL(Calendar)) &&
'Calendar'[Fiscal Year] = VALUE(MAX('Calendar'[Fiscal Year])-1),
'Calendar'[Fiscal Week Num] = VALUE(WEEKNUM(('Calendar'[Date)) - 1 )&&
'Calendar'[Fiscal Year] = VALUE(MAX('Calendar'[Fiscal Year]))
)
)
)