hello,
I am looking for a format (like "SIZEKB" without the "KB" near the numbers) or another solution in order to display thousands as unity:
For example: to display 17,549 as 17.5.
in addition, if there is a solution for millions also, i will appreciate...
TNX
Hi,
You could try dividing by the grouping (e.g. 1000) and then use the round function, e.g.:
data _null_;
x=round(17549/1000,0.1);
put x=;
run;
Regards,
Amir.
You could use a picture statement:
Proc Format;
Picture MyThous Low-High='000000.0' (Mult=0.01);
Run;
Data B;
Value=913837.32; V=Put(Value,MyThous.); Output;
Run;
Proc Print Data=B; Run;
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.