Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Note that filter is applied on every record and not on its aggregated value displayed in the view.

Multiple Filters

Following example returns number of students who had Exceptional results from Math subject.

Code Block

filter("L_PASS_RESULT in ('Exceptional')) AND (L_PASS_SUBJECT in ('Math')"){
  L_STUDENT_COUNT
}
Info

You can combine multiple filter conditions with AND or OR conjunction.

Next Steps