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

hi guys

I want SAS to read in the following:

data one;

input name & :$20.  age;

cards;

Marry lee Jones 40

Arnold Jonson 45

;

but i get errors

What am i doing wrong here?

please help?

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

& says to keep reading until it sees two or more spaces.  So the 40 on the first line becomes part of the name. It then needs to go to the next line to read the age and cannot translate Arnold into a number. Hence the error message.

Add an extra space in front of the age on each row.

View solution in original post

4 REPLIES 4
Tom
Super User Tom
Super User

& says to keep reading until it sees two or more spaces.  So the 40 on the first line becomes part of the name. It then needs to go to the next line to read the age and cannot translate Arnold into a number. Hence the error message.

Add an extra space in front of the age on each row.

Tal
Pyrite | Level 9 Tal
Pyrite | Level 9

That was quick and sweet Smiley Happy

Thanks Tom

stat_sas
Ammonite | Level 13

Hi Tom,

Based on this discussion, I need to learn how can we refer variable names with spaces or dash - or dots (.)  betwen them in arrays?

e.g. NON BUYERS

Thanks,

Naeem

Tom
Super User Tom
Super User

Start a new thread and explain in more detail what you want.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 4 replies
  • 673 views
  • 1 like
  • 3 in conversation