BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sukumark
Calcite | Level 5

In below example, I would like to create a new character variable and with the attributes of second variable(FMTNAME)!! Resulting variable is RESULT_C.

RESULT_N       FMTNAME

5                       best.

5                         z5.

5                     dollar5.2

RESULT_C

5

00005

$5.00

Thanks in Advance,

Sukumar

1 ACCEPTED SOLUTION

Accepted Solutions
RichardinOz
Quartz | Level 8

Use the PUTN() function

Data want ;

     set have ;

     result_C = PUTN (result_N, fmtname) ;

Run ;

(Untested)

Richard

View solution in original post

5 REPLIES 5
RichardinOz
Quartz | Level 8

Use the PUTN() function

Data want ;

     set have ;

     result_C = PUTN (result_N, fmtname) ;

Run ;

(Untested)

Richard

RichardinOz
Quartz | Level 8

You will probably also need a Length statement:

Data want ;

     set have ;

     Length result_C $ 5 ;

     result_C = PUTN (result_N, fmtname) ;

     keep result_C ;

Run ;

(Untested)

Richard

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Just to note RichardinOz, best. will return 8 characters but default so will be truncated by the $5.  Pop a strip() around the putn, or increase the with to $10.

sukumark
Calcite | Level 5

Thank you for the answer! Is there any conventional method other than PUTN() ?

RichardinOz
Quartz | Level 8

The PUT functions PUT(), PUTN(), and PUTC(), are the SAS conventional methods for recasting or recoding values.  PUTN() and PUTC() (for character values) allow the format to be provided dynamically, as you require in this case.

@RW9's amendment , or the use of the LEFT() function, is required if you use the modified version I supplied.

Richard

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 5 replies
  • 1641 views
  • 1 like
  • 3 in conversation