Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
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
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)