Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need a table that counts only values that fulfill my condition {exp: (x/stdev(y)<5} without the "stdev(y) it works fine like
count( if( x<5, x))but something like
count( if(stdev(x)<5,x))wont work.
Hi, if you trying to use the same field ("x"), remember that inside Count function every value for "x" will be equal to stdev(x), because only that specific x value will be touched.
Use stdev(TOTAL x) instead.
Set analysis might be a better solution if you have dimensions to display.