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

 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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