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

data scores;
infile '/folders/myshortcuts/s2/scores.txt';
input gender$1. score1 score2 score3 score4;
avg=(score1+score2+score3+score4)/4;
run;

 

In scores.text I have given one missing value for score2 in one obsevation.For the same obsevation Value of avg is also coming as missing.Please refer the screenshot attached.

Please tell me why avg is not coming for this obsevation. 


sas_doubt1.png
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisBrooks
Ammonite | Level 13

The result of any mathematical operation on a missing value results in an answer of missing hence your result.

 

If you want the average of the non-missing values use the mean function detailed here http://support.sas.com/documentation/cdl/en/lefunctionsref/69762/HTML/default/viewer.htm#p0vl2htnkjk...

View solution in original post

2 REPLIES 2
ChrisBrooks
Ammonite | Level 13

The result of any mathematical operation on a missing value results in an answer of missing hence your result.

 

If you want the average of the non-missing values use the mean function detailed here http://support.sas.com/documentation/cdl/en/lefunctionsref/69762/HTML/default/viewer.htm#p0vl2htnkjk...

s_m
Obsidian | Level 7 s_m
Obsidian | Level 7
Thanks for your help.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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