BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
LABRADOR
Obsidian | Level 7

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;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

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

2 REPLIES 2
Tom
Super User Tom
Super User

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.

LABRADOR
Obsidian | Level 7

Thank you Tom!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 2 replies
  • 830 views
  • 1 like
  • 2 in conversation