BookmarkSubscribeRSS Feed
Pramod_R
Calcite | Level 5
Hi,

The new Indian Rupee symbol was introduced in July 2010. (Refer: http://en.wikipedia.org/wiki/Indian_rupee_sign) I was wondering if and when SAS could include this informat instead of the existing NLMNLINRw.d format/informat.

Is there a new package already available which we may need to download from the SAS site?

Thanks in Advance Message was edited by: Pramod.R
1 REPLY 1
sss
Fluorite | Level 6 sss
Fluorite | Level 6
HI promod
Please try the folloing steps

Download the RUPEE font from the Net and paste in Fonts folder in windows OS

try the following code

options sysprintfont="Rupee Foradian";
proc fontreg mode=all;
fontfile 'C:\Documents and Settings\Instructor\Desktop\rupee\';
run;
proc format;
picture rupee low-high='0000,000' (prefix='`');
run;
proc template;
define style New_style / store = SASUSER.TEMPLAT;
parent = styles.printer;
replace fonts /
'docFont' = ("Rupee Foradian", 12pt)
'headingFont' = ("Rupee Foradian", 10pt, bold)
'headingEmphasisFont' = ("Rupee Foradian", 10pt, bold italic)
'TitleFont' = ("Rupee Foradian", 12pt, italic bold)
'TitleFont2' = ("Rupee Foradian", 11pt, italic bold)
'FixedFont' = ("Rupee Foradian", 11pt)
'BatchFixedFont' = ("Rupee Foradian", 6pt)
'FixedHeadingFont' = ("Rupee Foradian", 9pt, bold)
'FixedStrongFont' = ("Rupee Foradian", 9pt, bold)
'FixedEmphasisFont' = ("Rupee Foradian", 9pt, italic)
'EmphasisFont' = ("Rupee Foradian", 10pt, italic)
'StrongFont' = ("Rupee Foradian", 10pt, bold) ;
end;
run;
ods pdf style=New_style;
proc print data=ia.empdata;
format salary rupee.;
title f='Rupee Foradian' '` symbol' ;
run;
ods pdf close;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 2864 views
  • 0 likes
  • 2 in conversation