BookmarkSubscribeRSS Feed
nitya411
Obsidian | Level 7

title 'Indian Currency Format';
libname orion'D:\Workshop\pg1';
Proc format;
Picture indianc
low-high='0,00,00,00,00,00,00,00,000';
run;
data new;
a=100; output;
a=1000; output;
a=10000; output;
a=100000; output;
a=1000000; output;
a=10000000; output;
a=100000000; output;
a=1000000000; output;
a=10000000000; output;
a=100000000000; output;
format a indianc.;
run;

proc print data=new;
run;

 

I'm trying this but it's showing that no obs found. How to fix this error. Kindly update. Thanks!

3 REPLIES 3
ChrisNZ
Tourmaline | Level 20

Have you seen the error message in the log?

This works:

 

proc format;
  picture indianc
          low-high='0,00,00,00,00,00,00,000';
run;
data NEW;
  do EXP=1 to 15; 
    A=10**EXP; 
    output;
  end;  
  format a indianc.;
run;

proc print data=NEW noobs;
  var A;
run;

The maximum precision is 16 digits .

 

 

A
10
100
1,000
10,000
1,00,000
10,00,000
1,00,00,000
10,00,00,000
1,00,00,00,000
10,00,00,00,000
1,00,00,00,00,000
10,00,00,00,00,000
1,00,00,00,00,00,000
10,00,00,00,00,00,000
1,00,00,00,00,00,00,000
 
nitya411
Obsidian | Level 7
Oh yes! just saw that! thankyou so much

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2147 views
  • 0 likes
  • 3 in conversation