BookmarkSubscribeRSS Feed
didye
Calcite | Level 5

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!!!

2 REPLIES 2
LinusH
Tourmaline | Level 20

put()-function

Data never sleeps
Ksharp
Super User

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

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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
  • 1360 views
  • 0 likes
  • 3 in conversation