Hi,
need help.
I need decimals to be replaced by comma in numbers.
for e,g, 145.3 as 145,30
33428778 as 33428778,00
how to code this?
Hi,
Apply a format comma10.;
data want;
attrib b format=comma10.;
a=1234567;
b=a;
run;
Hi ,
My requirement is to have decimal replaced with comma.
COMMA10, will give comma after every 3 digits but my requirement is only one comma per number.. that is..,
33428778 shd be 33428778,00 and not 33,428,778
similarly
145.7 shd be 145,70
DATA WANT;
ATTRIB NEW FORMAT=NUMX10.2;
OLD=145.3;
NEW=OLD;
RUN;
yes , numx10.2 works thanks...
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 lock in 2025 pricing—just $495!
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.