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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
joshua1990
Post Prodigy
Post Prodigy

Calculate this week sales vs last week

Hi all!

I have built a simple measure that shows me the difference between the sales for this week compared to previous week.

CW vs LW = 
VAR _CW =
    SELECTEDVALUE ( 'Calendar'[WeekOffset] )
VAR _LW =
    SELECTEDVALUE ( 'Calendar'[WeekOffset] ) - 1
RETURN
    CALCULATE (
        [Sales],
        FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekOffset] = _CW )
    )
        - CALCULATE (
            [Sales],
            FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekOffset] = _LW )
        )

 

Actually, this measure works for 2weeks ago vs 3weeks ago.

But If I want to compare current week with previous week, then it doesn't work.

And I am not able to get the issue.

Is there someone who could share a different approach to get this comparison / number?

 

 

Best regards

Joshua

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@joshua1990 Maybe:

CW vs LW = 
VAR _CW = MAXX(FILTER( 'Calendar', [Date] = TODAY()), [WeekOffset])
VAR _LW = _CW - 1
RETURN
    CALCULATE (
        [Sales],
        FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekOffset] = _CW )
    )
        - CALCULATE (
            [Sales],
            FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekOffset] = _LW )
        )

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
v-xiaosun-msft
Community Support
Community Support

Hi @joshua1990 ,

 

Has your problem been solved? If so, would you mind accept the helpful replies as solutions? Then we are able to close the thread. More people who have the same requirment will find the solution quickly and benefit here, thank you!

 

Best Regards,
Community Support Team _ xiaosun

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

@joshua1990 Maybe:

CW vs LW = 
VAR _CW = MAXX(FILTER( 'Calendar', [Date] = TODAY()), [WeekOffset])
VAR _LW = _CW - 1
RETURN
    CALCULATE (
        [Sales],
        FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekOffset] = _CW )
    )
        - CALCULATE (
            [Sales],
            FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekOffset] = _LW )
        )

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors