This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello,
I've been trying to figure out a way to easily track Employee Productivity over a period of time.
We might have employees work on one (or two) line(s) of the bussiness for a few months, and then move on to another line of the bussiness, as is the contact centre life.
I could formulate an excel file that feeds into PowerBI to assign them teams, but I am struggling with figuring out how to retain the hisotical work of that Employee after they move to work on another line of work.
Example
| Name | Week Starting | Department A | Department B | Department C | Department D |
| Employee A | 13-OCT-2019 | Yes | No | No | No |
| Employee B | 13-OCT-2019 | No | Yes | No | No |
| Employee C | 13-OCT-2019 | No | Yes | No | No |
| Employee D | 13-OCT-2019 | No | No | Yes | No |
| Employee E | 13-OCT-2019 | No | No | Yes | No |
| Employee F | 13-OCT-2019 | No | No | No | Yes |
| Employee G | 13-OCT-2019 | Yes | No | No | No |
| Employee A | 20-OCT-2019 | No | Yes | No | No |
| Employee B | 20-OCT-2019 | Yes | No | No | No |
| Employee C | 20-OCT-2019 | Yes | No | No | No |
| Employee D | 20-OCT-2019 | No | Yes | Yes | No |
| Employee E | 20-OCT-2019 | No | No | No | Yes |
| Employee F | 20-OCT-2019 | No | No | No | Yes |
| Employee G | 20-OCT-2019 | No | No | Yes | No |
Any insight on how I can see the Prouctivity of Employee A over this period would be great.
Is there a way to have PowerBI refer to a specific Date and then pull the work that employee did?
I would need to be able to scale this to track ~170 Employees, and Assignments could change on a weekly bassis (rarely but they do happen)
Hopefully this makes sense
Thanks,
Elie
Solved! Go to Solution.
Hi @ElieK ,
At first, you need to unpivot department columns in the query editor.
Then you could create a measure to show the data.
Measure =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Value] = "Yes" ),
'Table'[Attribute],
","
)
Here is the result.
Hi @ElieK ,
At first, you need to unpivot department columns in the query editor.
Then you could create a measure to show the data.
Measure =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Value] = "Yes" ),
'Table'[Attribute],
","
)
Here is the result.
Thanks! This worked perfectly!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 43 | |
| 41 | |
| 21 | |
| 20 |