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
I want the following result in powerbi where one column has week to week dates
I have the following on powerbi. Is there a way where I can group all the dates from 5/4/2021 - 5/10/2021 so I just have one row with all the answers like shown above
Solved! Go to Solution.
@ligalbert , Create a date from date time
Date = datevalue([Datetime])
Then create a date table join on a date and have a column like that there
Week = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1 & " - " 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
where(Monday week)
Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
@ligalbert , Create a date from date time
Date = datevalue([Datetime])
Then create a date table join on a date and have a column like that there
Week = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1 & " - " 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
where(Monday week)
Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 61 | |
| 46 | |
| 40 | |
| 38 | |
| 22 |
| User | Count |
|---|---|
| 176 | |
| 131 | |
| 118 | |
| 82 | |
| 54 |