Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello!
I am having trouble figuring out how to sort my data by week. I have the received date and the project ID, but I am unsure how to calculate the week number. My data consists of individual activities for the projects so I need to use a count of distinct project IDs.
I am trying to do 2 things:
My data looks like this
Activity ID | Project ID | Project Received Date |
a | 1 | 2/1/2020 |
b | 1 | 2/1/2020 |
c | 1 | 2/1/2020 |
a | 2 | 3/5/2021 |
a | 3 | 4/1/2021 |
b | 3 | 4/1/2021 |
Thank you in advance!!
Solved! Go to Solution.
The distinct count of projects is pretty straight forward:
Projects =DISTINCTCOUNTT ( ProjectsTable[Project ID] )
The AVG per week will require a calendar table with the year-week in it then you can use a measure like this.
Avg Weekly Projects = AVERAGEX(
VALUES(Dates[Year Week]),
[Projects]
)
I have attached my sample file for you to look at. It also contains theDAXX code to make the calendar table.
Hi,
You should create a Calendar Table and in that write a calculated column formula using the WEEKNUM feature to extract the week number from the Date.
The distinct count of projects is pretty straight forward:
Projects =DISTINCTCOUNTT ( ProjectsTable[Project ID] )
The AVG per week will require a calendar table with the year-week in it then you can use a measure like this.
Avg Weekly Projects = AVERAGEX(
VALUES(Dates[Year Week]),
[Projects]
)
I have attached my sample file for you to look at. It also contains theDAXX code to make the calendar table.