Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all
I have employee acheivemen field as below
82 |
72 |
10 |
15 |
36 |
50.25 |
87 |
35 |
66 |
94 |
45 |
60 |
31 |
60 |
35 |
35 |
67.85 |
20 |
30 |
56 |
72.5 |
38 |
55 |
when i am using the expression
if([Employee Acheivement] >= 35, count([Employee Number])) I am getting '-' instead of value
Pla help
=Count(if([Employee Acheivement] >= 35, [Employee Number]))
Hi,
Try this;
=Count(if([Employee Acheivement] > 35,[Employee Number]))
thanx
This is because the first record it is looking at per the if statement is not >= 35. Try something like:
=count({[Employee Achievement]={">=35"}} [Employee Number])
you need to evaluate the if condition inside of the aggregation function count, like what tresesco said.