Consider the following if and else if statements. What value of QuizRange will be assigned to a missing value of Quiz?
if Quiz = 'A+' or Quiz = 'A' or Quiz = 'B+' or Quiz = 'B'
then QuizRange = 1;
else if Quiz = 'B-' or Quiz = 'C+' or Quiz = 'C'
then QuizRange = 2;
I think you are asking what value will the variable QUIZRANGE have if QUIZ is blank.
It will have the value it had BEFORE those two statement ran.
If QUIZRANGE was missing it stays missing.
If QUIZRANGE was 150,000 then it stays 150,000.
View solution in original post
Thank you Tom!
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.Sign up by Dec. 31 to get the 2024 rate of just $495.Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.