Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Friends,
Please help with advice on how to calculate current week sales in DAX.
The current week will be the weeknum of today from the calendar which I have created
Please see below link with pbix file with dummy data
Below is my formulae
Also I would like to count and display (week 33 (show the current week and month))Number of sales per country for
Week to Date
Month to Date
and YTD
Sales WTD = calculate(sum(CountrySales[Sale ]), filter(all('Date'), 'Date'[Date] <= max('Date'[Date]) && 'Date'[WeekNum] = max('Date'[WeekNum])))
https://app.box.com/s/6ctcewpl99axquosbsjwcct5ikdgvuer
Thanks so much.
Hi @MYDATASTORY ,
Does that make sense? If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.
Best regards
Amy
Hi @MYDATASTORY ,
You may create measure like DAX below.
Total sale per Week= CALCULATE(SUM(CountrySales[sale]),FILTER(ALLSELECTED(CountrySales),CountrySales[Country] =MAX(CountrySales[Country])&&WEEKNUM(CountrySales[Date]) =WEEKNUM(MAX(CountrySales[Date]))))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have updated the link with formulae
and I would like to Sum Total sales and diplay Current week sales (WTD week to date),Month to date, and Year to date
Hi @MYDATASTORY
Have a look at my blog post on how to easily achieve this, which will allow for the measures you are looking for
https://www.fourmoo.com/2016/09/07/create-dynamic-periods-for-fiscal-or-calendar-dates-in-power-bi/
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
40 | |
21 | |
20 | |
15 | |
15 |
User | Count |
---|---|
27 | |
20 | |
18 | |
16 | |
14 |