BookmarkSubscribeRSS Feed
2 REPLIES 2
Shmuel
Garnet | Level 18

In order to use dynamic format, given at run time, use PUTN for numeric or PUTC for character instead of PUT function.

for example:

data test;
  x=2.5;
run;

data _null_;
 set test;
     myfmt = 'z4.3';
     show = putn(x,myfmt);  /* using variable name not a format name */
     put show=;
run;

you can create your own format in a variable by using concatenation and any expression you need.

Hello_there
Lapis Lazuli | Level 10

Thanks, this information was helpful. I had deleted the original post bc i thought it was probably confusing. But using the putn() helps me w/ what i was looking for. If i was able to, i would have accepted this as a solution. Thanks again!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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