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

Hello

I want to convert  numeric to char.

I want to ask :

What is the reason that in sas we cannot write on left side of the equation same var name as in right side?

(Usually I am using another name on right side of equation and then use drop and rename.)

 


DATA t1;
input Store 1 Day $ 3 Sales 5-8;
CARDS;
2 M 2215
2 T 2458
2 W 1798
2 R 1692
2 F 2105
2 S 2847
	;
RUN;

DATA t2 ;
set t1;
Store=put(Store,1.);
RUN;
1 ACCEPTED SOLUTION

Accepted Solutions
andreas_lds
Jade | Level 19

In sas the type of a variable is not dynamic, so the type of a variable is defined, it can't be changed.

View solution in original post

1 REPLY 1
andreas_lds
Jade | Level 19

In sas the type of a variable is not dynamic, so the type of a variable is defined, it can't be changed.

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
  • 1 reply
  • 708 views
  • 1 like
  • 2 in conversation