在SAS的印度货币符号

时间:2018-03-18 10:46:19

标签: sas

有人可以告诉我如何在SAS程序中使用印度货币符号?

就像我们为美元所做的那样

format Salary :dollar8.;

1 个答案:

答案 0 :(得分:0)

可以像这样构建类似的格式:

%let inr=%sysfunc(unicode(\u20B9));  

proc format;
  picture rupee 
    low - <0 = '00,000,000,000,009.99)' (prefix="(&inr")
    0 - high = '00,000,000,000,009.99 ' (prefix="&inr")
  ;
run;

其中,应用如下:

data test;
  format x rupee.;
  x=34341.12;       output;
  x=-12343452435.44;output;
  x=0;              output;
run;

给出:

enter image description here