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

Hello

In following example there are 2 missing values in  observation2 and 1 missing value in observation1.

There are 5 observations.

SAS fail to read it correctly.

May anyone correct the code below and explain

 

data weight3;     
infile datalines missover;   
input IDnumber $ Week1 Week16;    
WeightLoss2=Week1-Week16;        
cards;              
2477 195  163
2431 
2456 173  155
2412 135  116
     148  143
; 
Run;
1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Add an exact pointer to the IDNumber variable like this

 

data weight3;     
infile datalines missover;   
input IDnumber $ 1-4 Week1 Week16;    
WeightLoss2=Week1-Week16;        
cards;              
2477 195  163
2431 
2456 173  155
2412 135  116
     148  143
; 
Run;

View solution in original post

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Add an exact pointer to the IDNumber variable like this

 

data weight3;     
infile datalines missover;   
input IDnumber $ 1-4 Week1 Week16;    
WeightLoss2=Week1-Week16;        
cards;              
2477 195  163
2431 
2456 173  155
2412 135  116
     148  143
; 
Run;
singhsahab
Lapis Lazuli | Level 10

data weight3;
input IDnumber $ 1-4 Week1 6-8 Week16 11-13;
WeightLoss2=Week1-Week16;
cards;
2477 195 163
2431
2456 173 155
2412 135 116
148 143
;
Run;

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
  • 552 views
  • 2 likes
  • 3 in conversation