Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to count student lying below a range?

Hi All,

I need an urgent help.

let say i have a slider and i want to see students lying below that selected value on the slider.Suppose i select 10% on the slider,then according to that only 3 companies are lying below that,so my question is I need this count(i.e 3) in a text box.

Anyone knows how to calculate the number of companies below the selected value on slider(it can vary and depend on user ,he/she may select 10 or 20) .

student

rankmarkscumulative %
abc17565%
xyz26577%
def34549%
ghi435411%
jkl523112%
10 Replies
Not applicable
Author

This expression: "COUNT({$< [cumulative %] = {">= $(vValueInSlider)"}>} student)"

Its the COUNT of the field 'student' when the field 'cumulative%' its >= the value in the slider.

Value in slider = 10%

So If you have 3 students that have >= 10% in their corresponding 'cumulative %' field. This expression returns 3. 

I hope i've solved your problem.