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;
In sas the type of a variable is not dynamic, so the type of a variable is defined, it can't be changed.
In sas the type of a variable is not dynamic, so the type of a variable is defined, it can't be changed.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.