Ex: A= 123.22
B = 44.21
Need output like
A= 0000123.22
B= 0000044.21
You can use zw.d format to get your desired results,
Try this code:
data want;
value=123.22;
format value z10.2;
run;
you can also use a PROC FORMAT with the PICTURE statement:
data have;
input A B;
datalines;
123.22 44.21
;
run;
proc format;
picture myformat low-high = 9999999.99;
run;
data want;
set have;
format A B myformat.;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.