Skip to content

Commit

Permalink
Merge pull request #1940 from TEAMSchools/iready-view-update
Browse files Browse the repository at this point in the history
add display score to i-Ready
  • Loading branch information
anthonygwalters authored Oct 7, 2024
2 parents d639e18 + 1e17b14 commit c1c6def
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ with
percent_progress_to_annual_stretch_growth_percent,
rn_subj_round,

concat(
overall_relative_placement, ' (', overall_scale_score, ')'
) as score_display,

case
test_round
when 'BOY'
Expand Down Expand Up @@ -74,6 +78,7 @@ select
overall_placement_display,
percent_progress_to_annual_typical_growth_percent as pct_progress_typical,
percent_progress_to_annual_stretch_growth_percent as pct_progress_stretch,
score_display,

'Test Rounds' as `domain`,
from diagnostic_results
Expand All @@ -97,6 +102,7 @@ select
ir.overall_placement_display,
ir.percent_progress_to_annual_typical_growth_percent as pct_progress_typical,
ir.percent_progress_to_annual_stretch_growth_percent as pct_progress_stretch,
ir.score_display,

'YTD Growth' as `domain`,
from diagnostic_results as ir
Expand Down

0 comments on commit c1c6def

Please sign in to comment.