Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count if (x/stdev(y))<5

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.

2 Replies
Not applicable
Author

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.

Not applicable
Author

Set analysis might be a better solution if you have dimensions to display.