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
joshua1990
Post Prodigy
Post Prodigy

Compare this week value with latest value previous week

I have a table with a daily snapshot of some simple data:

OrderValueSnapDate
100501.01.2021
101501.01.2021
102501.01.2021
100502.02.2021

 

Now I would like to determine the number of rows for the latest SnapDate in the previous week compared to the atest entry of this week.

It is possible that the latest entry for last week is Friday or Saturday instead of Sunday. Therefore the dax measure should check what is the latest date in the last week and then calculate the number of rows. But how?

1 REPLY 1
Samarth_18
Community Champion
Community Champion

Hi @joshua1990 ,

 

You can create a measure with below :-

Count_data = 
VAR previous_week_num =
    WEEKNUM ( MAX ( snap_data[SnapDate] ), 1 ) - 1
VAR max_date_prev_week =
    CALCULATE (
        MAX ( snap_data[SnapDate] ),
        WEEKNUM ( snap_data[SnapDate], 1 ) = previous_week_num
    )
RETURN
    CALCULATE (
        COUNTROWS ( snap_data ),
        FILTER ( snap_data, MAX ( snap_data[SnapDate] ) = max_date_prev_week )
    )

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors