Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hey .. I am using SSRS report..In that there is a textbox ..I want rupees symbol in that..
ie.()..But how can I put this symbol..?( only I found INR in the textbox properties)..

can you give a solution...
Posted
Comments
Prasad Khandekar 1-Apr-13 7:08am    
Not all font's have been updated to include this glyph. The official code position is U+20B9 (HTML ₹). If you have a font that includes this glyph then all you have to do is set the font name to the font and input this value (Keyboard Alt 8377)
Sergey Alexandrovich Kryukov 1-Apr-13 13:48pm    
[OP commented:]
but I want the rupees symbol in text box property( Is there is any way to use custom symbol in SSIS report) or Any way to add rupee symbol on sql selecting query ..
Sergey Alexandrovich Kryukov 1-Apr-13 13:54pm    
That is correct. Even I knew this problem. I provided a more detailed answer, please see.
—SA

The comment and the advice by Prasad Khandekar is correct.

This is a well-known problem This symbol was recently (10 August 2010) standardized by Unicode committee, but not yet implemented by most of the fonts:
http://en.wikipedia.org/wiki/Indian_rupee_sign[^].

You need to supply the appropriate font on your site and use it. Please see:
http://www.w3schools.com/css3/css3_fonts.asp[^],
http://jonraasch.com/blog/embedding-custom-fonts[^].

—SA
 
Share this answer
 
Yes it's possible to show new rupee symbol in SSRS reports.



Follow the steps

1. Write query in sql :
SQL
SELECT nchar(0x20B9)

2. Copy Output Symbol
3. Paste in your textbox in SSRS
4. Change that text symbol font to : DejaVu Sans
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900