Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Community
I am having a difficulty with the following formula:
=Count(if(SUM(Value)/10 > 0.8,[Employee Name])
I am not getting a result.
Please advise
Regards
Don't know what your data looks like but you can try this.
=if(aggr(sum(Value)/10,[Employee Name])>0.8,count(distinct [Employee Name]),)
missing closing bracket ...
=Count(if(SUM(Value)/10 > 0.8,[Employee Name]))
also you are missing aggr function
Try
=Count(if(Aggr(SUM(Sales),Customer) /10 > 0.8,Customer))
Thanks , I am still trying but not getting result
Thanks, Still no result , I will follow the formula, probably missing a bracket somewhere on my side
=Count(if(Aggr(SUM(Sales),[Employee Name]) /10 > 0.8,[Employee Name]))
Great , thanks a million - works
Please mark correct and close the thread .. Thanks