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.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.