Forum Discussion
ApurvaKhatri
Helper III
8 years agoTo fetch previous week data
I have a table viewKPI with column [todate] and [lease seated]
I want to calculate sum([lease seated]) for last week from the column [todate].
How can I acheive this
Hi ApurvaKhatri,
You can create a measure below:
LastWeekTotal = CALCULATE(SUM(Table1[lease seated]),FILTER(ALL(Table1),WEEKNUM('Table1'[todate],1)=WEEKNUM(TODAY(),1)-1))
Best Regards,
Qiuyun Yu