Forum Discussion
Display previous week value in a Card
- Anonymous3 years ago
Hi okl ,
You can filter the previous week by subtracting the current week number by one.
For example, if you need to return sales for the previous week, you can create a measure.
PreviousWeek = CALCULATE ( SUM ( 'Table'[Sales] ), FILTER ( ALLSELECTED ( 'Table' ), [Fiscal Year Week Number] = MAX ( 'Table'[Fiscal Year Week Number] ) - 1 ) )Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi okl ,
You can filter the previous week by subtracting the current week number by one.
For example, if you need to return sales for the previous week, you can create a measure.
PreviousWeek =
CALCULATE (
SUM ( 'Table'[Sales] ),
FILTER (
ALLSELECTED ( 'Table' ),
[Fiscal Year Week Number]
= MAX ( 'Table'[Fiscal Year Week Number] ) - 1
)
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.