Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, Im working on a HR Dashboard and I need to know how many active employee has more than one position assigne. I have a column of employee ID and another one with positions. Any suggestion??
several ways
1) Expression using aggr with empoyeeID as dimension
if (aggr(Count(Position),EmplyeeID) > 1, Count(Position))
2) employeeID as Dimension
Count(position) as Expression
Dimension Limit (Show only values thar are gretaet than 1 exact amount)
-> only if Count (Position) is first expression
can you give more precision about your data model ?
several ways
1) Expression using aggr with empoyeeID as dimension
if (aggr(Count(Position),EmplyeeID) > 1, Count(Position))
2) employeeID as Dimension
Count(position) as Expression
Dimension Limit (Show only values thar are gretaet than 1 exact amount)
-> only if Count (Position) is first expression
Maybe something like
=Count({<EmpID = {"=Count(DISTINCT Position) >1"}>} DISTINCT EmpID)
Thank you HRLinder your first suggestion solved my problem.
It seems you have the answer to your question. Now it is time for you to flag the correct answer by using the Correct Answer flag.