BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mlogan
Lapis Lazuli | Level 10

Can someone tell me how do I insert 5 spaces between last name and first name?

 

line1 = CAT(put(Student_ID, 7.), put(Last_Name, 5.), put(First_Name, 3.));

 

Expected Output

 

123456 JHANG     Will       

1234658MICHA     Don

 

Thanks,

1 ACCEPTED SOLUTION

Accepted Solutions
Haris
Lapis Lazuli | Level 10

line1 = CAT(put(Student_ID, 7.), put(Last_Name, 5.), '     ', put(First_Name, 3.));

but you can't fit 'Will' into three characters of the first name...

View solution in original post

3 REPLIES 3
Haris
Lapis Lazuli | Level 10

line1 = CAT(put(Student_ID, 7.), put(Last_Name, 5.), '     ', put(First_Name, 3.));

but you can't fit 'Will' into three characters of the first name...

ballardw
Super User

line1 = CAT(put(Student_ID, 7.), put(Last_Name, $5.), '     ', put(First_Name, $3.));

or

line1 = CAT(put(Student_ID, 7.),substr(Last_Name,1, 5), '     ', substr(First_Name, 1, 3))

 

And if I were writing directly to listing output or a text file would consider

put student_d @8 Last_name $5. @13 First_name $3.;

LinusH
Tourmaline | Level 20
You can't (espacially by using numerical format) and there is no need to use put() function on character values.
Why do you want to concatenate those in the first place?
Data never sleeps

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 3664 views
  • 2 likes
  • 4 in conversation