BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Batman
Quartz | Level 8

How can I remove the space before the "n" in the variable y1.

 

data x;
y='Provider Name ';
y1=catq('1T',y,'n');
put y= y1=;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Are you trying to make a name literal.  There is a function for that.

 

45         data _null_;
46         y='Provider Name ';
47         y1=catq('1T',y,'n');
48         nl = nliteral(y);
49         put y= y1= nl=;
50         run;

y=Provider Name y1='Provider Name' n nl="Provider Name"N

 

View solution in original post

2 REPLIES 2
data_null__
Jade | Level 19

Are you trying to make a name literal.  There is a function for that.

 

45         data _null_;
46         y='Provider Name ';
47         y1=catq('1T',y,'n');
48         nl = nliteral(y);
49         put y= y1= nl=;
50         run;

y=Provider Name y1='Provider Name' n nl="Provider Name"N

 

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1089 views
  • 0 likes
  • 3 in conversation