Forum Discussion
ElieK
Helper I
6 years agoHistorical Employee Productivity over time
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, a...
- 6 years ago
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.
v-eachen-msft
Community Support
6 years agoHi 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.
- ElieK6 years ago
Helper I
Thanks! This worked perfectly!