Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Community
Please an i as advise on the following:
Below is my formula
=count(if(Aggr(SUM(Value),[Employee Name]) /10 > 0,{<Week={1}>},[Employee Name]))
I am not sure where to place the Set analysis because currently I have an error in the expression
Please advise
Many Thanks
try like this
=count(if(Aggr( Sum({<Week={1}>}Value),[Employee Name]) /10> 0,[Employee Name]))
May be this?
count(if(Aggr(Sum({<Week={1}>}Value),[Employee Name]) /10) > 0,[Employee Name])
Thanks for the quick response, however I still have an error in expresion
Regards
Could be issue over 10. Would you able to share sample
Hi
I cannot share, sensitive info contained. but I can see the expression editor is placing the red line behind the bracket of the 10. If this helps
=count(if(Aggr( Sum({<Week={1}>}Value),[Employee Name]) /10)> 0,[Employee Name])
try aggr(nodistinct ...
try like this
=count(if(Aggr( Sum({<Week={1}>}Value),[Employee Name]) /10> 0,[Employee Name]))
thank you
Glad to help you
Just for a try, this might work as well
=Count({<Week={1}, [Employee Name] = {"=Sum(Value) > 0"}>} [Employee Name])