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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Current Week and Previous Week

Hi,

I have a report requirement where I want to display current week sales and previous week sales. I have created a date table can you please help me with the DAX for current week and previous week.

 

Thanks in Advance,

Neelofar.

2 ACCEPTED SOLUTIONS
Ritaf1983
Super User
Super User

Hi @Anonymous 

Please refer to these tutorials :

https://www.youtube.com/watch?v=_j6Okp7zQlE

https://www.youtube.com/watch?v=kqr5iyd55Og&t=9s

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

Anonymous
Not applicable

Hi @Anonymous ,

Please have a try.

Create 2 columns.

Current Week Sales =
VAR CurrentWeek =
    WEEKNUM ( TODAY () )
RETURN
    CALCULATE (
        SUM ( Sales[Sales Amount] ),
        FILTER ( Sales, Sales[Week Number] = CurrentWeek )
    )
Previous Week Sales =
VAR CurrentWeek =
    WEEKNUM ( TODAY () )
VAR PreviousWeek = CurrentWeek - 1
RETURN
    CALCULATE (
        SUM ( Sales[Sales Amount] ),
        FILTER ( Sales, Sales[Week Number] = PreviousWeek )
    )

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Please have a try.

Create 2 columns.

Current Week Sales =
VAR CurrentWeek =
    WEEKNUM ( TODAY () )
RETURN
    CALCULATE (
        SUM ( Sales[Sales Amount] ),
        FILTER ( Sales, Sales[Week Number] = CurrentWeek )
    )
Previous Week Sales =
VAR CurrentWeek =
    WEEKNUM ( TODAY () )
VAR PreviousWeek = CurrentWeek - 1
RETURN
    CALCULATE (
        SUM ( Sales[Sales Amount] ),
        FILTER ( Sales, Sales[Week Number] = PreviousWeek )
    )

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

Ritaf1983
Super User
Super User

Hi @Anonymous 

Please refer to these tutorials :

https://www.youtube.com/watch?v=_j6Okp7zQlE

https://www.youtube.com/watch?v=kqr5iyd55Og&t=9s

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.