Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
All,
I have a pretty lengthy If(Sum()) > then statement, that populates the variance of Hours Worked Over Target hours, So right now i have a straight table with that looks Something like example below. I want to create two text boxes that displays the Count(distinct [Employee Name] has a positive variance, and one that has a Count(Distinct( [Employee Name]) that has a negative variance. The variance formula is a pretty extensive formula. Any recommendations?
Sum (Aggr (If(YourVarianceExpression < 0, 1), [Employee Name]))
Sum (Aggr (If(YourVarianceExpression < 0, 1), [Employee Name]))
Yep that was it, Thanks Manish!