Extract Currency Symbol from Regional Settings

Mauritz

Board Regular
Joined
Dec 15, 2006
Messages
53
Good morning

How can one extract the currency symbol from the regional settings of Windows XP to use in a string or cell entry in Excel 2003,
ie in South Africa the currency symbol is R, and say I want to create an entry in cell B3 that will read "Net Rental Rate - R/m²" based on the formula =("Net Rental Rate - ")&(Currency_Symbol)&("/m²"), I need to be able to get the letter "R" in place of the (Currency_Symbol) in the formula. I make use of a lot of custom number formating in the spreadsheet, and to change each cell every time I work in different currencies would not be viable.

Thanks
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hi
could you post a sample of your data?
Thx
 
Upvote 0
Can you live with a UDF?

Code:
Function CurrencySymbol()
    CurrencySymbol = Application.International(xlCurrencyCode)
End Function
 
Upvote 0
Hi

Thanks for the replies. UDF's are great, but the recalculation aspect bothers me, even when using "Application.Volatile" it does not always seem to recalculate and apply the new settings
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top