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...
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.