Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I'm trying to make a weekly report on stuff.
for example here per year.
Here per day.
Now I want also a weekly graph. Is this possible?
thank you
Solved! Go to Solution.
Hi @Anonymous ,
You will need to create a calculated column to get the week number for the date then you could use this week column as x-axis.
https://docs.microsoft.com/en-us/dax/weeknum-function-dax .
Best Regards,
Jay
Hi @Anonymous ,
You will need to create a calculated column to get the week number for the date then you could use this week column as x-axis.
https://docs.microsoft.com/en-us/dax/weeknum-function-dax .
Best Regards,
Jay
@Anonymous , i doubt the default date hierarchy has that. We usually add week year, year week column in date table and use it
Week start or end date is another option for axis
example
Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
Week Number = WEEKNUM([Date],2)
Week = if('Date'[Week Number]<10,'Date'[Year]*10 & 'Date'[Week Number],'Date'[Year]&'Date'[Week Number])
Week Rank = RANKX(all('Date'),'Date'[Week Start date],,ASC,Dense)
Week name = [Week Start date] & " to "& [Week End date]
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |