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

Hi All,

 

I have a below requirement. Could anyone help me!!. Thanks.

 

 

data temp;
input name$ details $ dlm='|';
datalines;
name1|sex1;dob1
name2|sex2;dob2
name3|sex3;dob3
.
.
.
so,on
;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Use DATALINES4 (aka CARDS4) statement instead. That requires a line with four semicolons to signal the end of the data.

data temp;
input name$ details $ dlm='|';
datalines4;
name1|sex1;dob1
name2|sex2;dob2
name3|sex3;dob3
.
.
.
so,on
;;;;

View solution in original post

1 REPLY 1
Tom
Super User Tom
Super User

Use DATALINES4 (aka CARDS4) statement instead. That requires a line with four semicolons to signal the end of the data.

data temp;
input name$ details $ dlm='|';
datalines4;
name1|sex1;dob1
name2|sex2;dob2
name3|sex3;dob3
.
.
.
so,on
;;;;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 624 views
  • 3 likes
  • 2 in conversation