Hello All,
I am facing a trouble to get Indian Comma Format in SAS.
Any suggestion to get that.
What does that look like? Have you tried a picture format?
Tried doing picture format on numeric values which displays value like 11,11,11,111.00 . But Picture format will convert numeric values in categories in VA.
Hey Reeza,
Have you any solution for this., the format looks like 11,11,11,111.00
You can use picture formats:
proc format;
picture indianc
low-high='99,99,99.99';
run;
data test;
a=121212.0;
format a indianc.;
run;
Hi RW9,
I'm trying to implement User-Defined Formats in SAS VA. Please refer to my post.
Need your guidance.
Kind Regards,
Balraj.P
You can use the comma format directly.
format variable comma12.2;
Dear Viveklanka
Inbuilt comma format give you output like 111,111,111.00, while Indian currency comma format is like 11,11,11,111.00 .
Thanks
Hi all,
Any solution or any suggestions please for this
You've been given a solution. Read again.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.