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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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