This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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.
Solved! Go to Solution.
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
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.
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.
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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |