If you need a specific format in your output, you use the proper format. You can't force a numeric variable in SAS to have the appearance you want any other way.
data a;
a=12.10;
format a 5.2;
run;
-- Paige Miller
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.