Skip to content

Commit

Permalink
Merge pull request #2423 from TEAMSchools/changes
Browse files Browse the repository at this point in the history
added a count for nulls
  • Loading branch information
cbini authored Jan 31, 2025
2 parents a557f99 + a8db4fc commit 6aa7778
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ with

if(s.isexempt = 0, true, false) as is_expected,

if(s.scorepoints is null, 1, 0) as is_null,

case
when s.isexempt = 1
then false
Expand Down Expand Up @@ -76,6 +78,7 @@ select
sum(s.islate) as n_late,
sum(s.isexempt) as n_exempt,
sum(s.ismissing) as n_missing,
sum(s.is_null) as n_null,

countif(s.is_expected) as n_expected,
countif(s.is_expected_scored) as n_expected_scored,
Expand Down

0 comments on commit 6aa7778

Please sign in to comment.