I have the following measure…
AVERAGEX(
DATESINPERIOD(‘DateTable’[Date],
LASTDATE(‘DateTable’[Date],
-1, DAY), [Fulfilled Dollar %])
All I have to choose from is YEAR, QUARTER, MONTH, DAY. How can I modify the DAY selection to change it to WEEK? If I say…-7,DAY, like below, it will only compare what happen on the single day 7 days ago to today, right?
LASTDATE(‘DateTable’[Date],
-7, DAY), [Fulfilled Dollar %])