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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
jyothish8807
Master II
Master II

If Condition

Hi

I have 3 columns.

name    Subject    Marks

aa           xx          20

aa           yy          45

bb           ee          33

No i want the count of marks which are <20, between 20 and 50,>50 for each student.

Regards

Best Regards,
KC
Labels (1)
4 Replies
narender123
Specialist
Specialist

Hi,

try this.

=count({<marks={"<30"}>}name)

See the attach file.

Not applicable

Hi,

in 3 expression:

count({<Marks={"<20"}>}Name)

count({<Marks={">=20"}*Marks={"<=50"}>}Name)

count({<Marks={">50"}>}Name)

narender123
Specialist
Specialist

you can show this in pivot table for better understand.

See the attachment.

Thanks.

Narender

CELAMBARASAN
Partner - Champion
Partner - Champion

Try with this

count({<Marks={"<20"}>} Name)

count({<Marks={">=20<=50"} Name)

count({<Marks={">50"}>} Name)