Would you be able to provide some insight on how I’d be able to create a sum of sales by fiscal week that changes accordingly to the current fiscal week and fiscal year. The current method I’ve been utilizing is just changing it manually.
To make this dynamic just add 2 new columns to your calendar table, just create some logic to compare each date in your calendar to NOW in Power Query M or DAX depending on what your more comfortable with.
This can either be an Offset which would return a 0 for the current FiscalWeekOffset/FiscalYearOffset, decreasing negative numbers for past- and increasing positive numbers for future FiscalWeeks/FiscalYears.
Or a Boolean value where the CurrentFiscalWeek/CurrentFiscalYear returns TRUE and all others FALSE, depending on your needs.
Then you can use these new calendar fields as filters in your CALCULATE statement - and your done.
Thank you for your help, I ended up realizing I was overthinking this and just developed two calculated columns that identified the current fiscal year and the current fiscal week, utilizing the column that identified the current fiscal year.