BookmarkSubscribeRSS Feed
yarrado2
Calcite | Level 5

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

4 REPLIES 4
LinusH
Tourmaline | Level 20

Use the z. format, or import the column as char.

Data never sleeps
Linlin
Lapis Lazuli | Level 10

did you try

format your_variable z6.; ?

ballardw
Super User

Are you doing arithmetic with the first variable such as sum, mean, standard deviations? If not make it character and avoid lots of issues.

yaswanthj
Calcite | Level 5

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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 831 views
  • 0 likes
  • 5 in conversation