BookmarkSubscribeRSS Feed
potiu
Fluorite | Level 6

Hi,

 

I came across the following Put statements to convert from numerical to character:

 

char_var = put(num_var,6.);

apple1 = put(apple, 6);

Run;

 

apple1 = put(apple, best6.);

Run;

Both statements will produce the same result.
My question are (1) why there are different syntax which can produce the same output, (2) what is the 'best' means, and (3) how do we know what is the value to put in the w.d format?

 

Thank you. 

3 REPLIES 3
Kurt_Bremser
Super User

The statements will NOT produce the same result.

Run this and look at the result:

data test;
input numvar;
charvar1 = put(numvar,6.);
charvar2 = put(numvar,best6.);
cards;
1
6000
6.5431
1534.21
1109998
;
run;

Note obs 3 and 4

 

Kurt_Bremser
Super User

As for your question 3:

Maxim 3: Know your data.

Inspect your dataset, run some statistics to see maximum and minimum values, see if x-int(x) gives you fractions, and so on.

Reeza
Super User

@potiu wrote:

(1) why there are different syntax which can produce the same output,

 


There is A LOT of 'different' syntax that can produce the same output. 

FYI - this is a PUT() function, there is a PUT statement and they do differ.

 

 

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

Develop Code with SAS Studio

Get started using SAS Studio to write, run and debug your SAS programs.

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