Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have: studentID, note
How to calculate the number of students who have a note>0 ?
Greetings
May be these?
If(Sum(note)>0, Count(studentID))
OR
If(note>0, Count(studentID))
OR
Count({<note = {'>0'}>} studentID)
OR
Count({<note = {"=Sum(note)>0"}>} studentID)
May be these?
If(Sum(note)>0, Count(studentID))
OR
If(note>0, Count(studentID))
OR
Count({<note = {'>0'}>} studentID)
OR
Count({<note = {"=Sum(note)>0"}>} studentID)
=Count( {$<note={'>0'}>} studentID)