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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Top Kudoed Authors