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

I just need a space!  But i'm not getting one 😞

 

_1=strip(put(mean, 8.1)) ||  " (" || strip(put(std, 10.2)) || ")");

 

so output should look like:  64.0 (11.00) .  But i'm getting 64.0(11.00)    

 

 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Well, it's not possible to test your code since it doesn't work.  But if you were to remove the extra closing parenthesis at the end, it gives the result you are asking for.

View solution in original post

3 REPLIES 3
Astounding
PROC Star

Well, it's not possible to test your code since it doesn't work.  But if you were to remove the extra closing parenthesis at the end, it gives the result you are asking for.

jenim514
Pyrite | Level 9
thx. i should have checked my log! i need more coffee.
ballardw
Super User

You should investigate the CAT, CATT, CATS and CATX functions as well. Then you don't need all the strip function calls

 

data example;
   mean= 64;
   std = 11;
   _1 = catx(' ',put(mean,8.1),cats('(',put(std,10.2),')') );
run;

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