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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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