Hello!
I would like to ask a question about column creation:
I 'd like to convert a formatted numeric column to its corresponding character column.
An example:
I have a numeric col1num as :
col1num
1
1
2
2
The format of this column is 1 ->"A", 2 -> "B".
I aim to create through a data step a new column col2char as :
col2char
A
A
B
B
Is there a simple instruction to do this ?
Thanks for help!!!
put()-function
PROC FORMAT ?
proc format ;
value fmt
1='A'
2='B'
;
run;
data a;
input a;
b=put(a,fmt.);
cards;
1
1
2
;
run;
Ksharp
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.