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
;;;;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1 reply
  • 355 views
  • 3 likes
  • 2 in conversation