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.
Hi!
I'm trying to measure the quantity of hours and tasks different individuals are doing per day and per week.
I'm very new at Power BI so I'm not quite sure what to do.
Thanks fo any help.
Kind regards,
Gimena
Solved! Go to Solution.
Hi @Anonymous
I created a simple demo, hope it helps you .
Original data :
Then create two measures to count the total time and task number .
Total time = CALCULATE(SUM('Table'[Time]),ALLEXCEPT('Table','Table'[User],'Table'[Week]))
Task number = CALCULATE(COUNT('Table'[Task]),ALLEXCEPT('Table','Table'[Week],'Table'[User]))
As you can see from the formula, I perform classification and aggregation operations based on column [User] and column [Week] . Of course, you can also add [day] as a column, and then sort and aggregate according to [day] .
Then you will get a table like this :
You can filter data by [User] through add column [User] in Slicer .
I have attached my pbix file , you can refer to it .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
I created a simple demo, hope it helps you .
Original data :
Then create two measures to count the total time and task number .
Total time = CALCULATE(SUM('Table'[Time]),ALLEXCEPT('Table','Table'[User],'Table'[Week]))
Task number = CALCULATE(COUNT('Table'[Task]),ALLEXCEPT('Table','Table'[Week],'Table'[User]))
As you can see from the formula, I perform classification and aggregation operations based on column [User] and column [Week] . Of course, you can also add [day] as a column, and then sort and aggregate according to [day] .
Then you will get a table like this :
You can filter data by [User] through add column [User] in Slicer .
I have attached my pbix file , you can refer to it .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |