Hi ,
I have a text file with the following 3 values separated by spaces :
056746 Sr M
When I read this file in SAS and print the output, the leading 0 is missing. Eg: 056746 is displayed as 56746.
Can you please help me with command and syntax that will help me display the entire value(with leading zeros)
I tried various possibilities with FORMAT, but with no success. Please help asap.
Thanks for your time
Use the z. format, or import the column as char.
did you try
format your_variable z6.; ?
Are you doing arithmetic with the first variable such as sum, mean, standard deviations? If not make it character and avoid lots of issues.
Hi..
Use format Z. is the best way to keep leading Zeros..
data test;
input ID first $ last $;
format id Z6.;
cards;
056746 Sr M
;
run;
proc print;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.