Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
okl
Frequent Visitor

Display previous week value in a Card

Hi there

I have  a Date table as below and some measurements with SalesVolume  and the percentage changes example YOY %

How do I show the previous Fiscal Year Week Number YoY % value in a card, example 62.75%

 

 

Capture.PNG

date.PNG

 

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

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
    )
)

vstephenmsft_1-1678785849469.png

vstephenmsft_2-1678785959985.png

 

   

   

                                                                                                                                                         

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.           

 

 

View solution in original post

1 REPLY 1
v-stephen-msft
Community Support
Community Support

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
    )
)

vstephenmsft_1-1678785849469.png

vstephenmsft_2-1678785959985.png

 

   

   

                                                                                                                                                         

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.           

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.