Comma & Dot Seperators

andy3816

Board Regular
Joined
Mar 22, 2005
Messages
135
I saw the post from Gratu and subsequent response from Hot Pepper on how to query the excel installed to see if the European or American format of comma for thousands seperator and dot for decimal seperator or European format dot for thousands seperator and comma for decimal point seperator are being used, this prompted me to post this question.

Can you use VB to force excel to switch, ie check to see if european is being used then switch to American if true, then run some code and switch back when done.

The reason I need this is that I share a very complex workbook globally and the only way our European friends can get some of code and functions to work is to force their compuers to think they are American!!! by altering their international settings.

Any help would sure help international diplomacy!!!
 
I guess the most annoying thing is that when copying a number from american table you get it like this 2.17 , but when you pass it to a, say Finnish excell, it shows like a date, like this: helmikuu.17 (February.17). It should be converted to look like this: 2,17 note the comma instead of dot.

The problem would be solved by changing the dots to commas as the decimal separator, the question is how to do it?

Just formatting the cell to "number" will not give right number, but 42767,00 instead of 2,17

By the way, formatting the cell to "date" will result as a date: 1.2.2017 (not february the 17th.)

So, how to change dots to commas when copying data from american tables?
 
Upvote 0

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
andy3816:

This is from the help file under ThousandsSeparator property, is this what you want?

Example
This example places "1,234,567.89" in cell A1 then changes the system separators to dashes for the decimals and thousands separators.

Sub ChangeSystemSeparators()

Range("A1").Formula = "1,234,567.89"
MsgBox "The system separators will now change."

' Define separators and apply.
Application.DecimalSeparator = "-"
Application.ThousandsSeparator = "-"
Application.UseSystemSeparators = False

End Sub
 
Upvote 0
Thanks.

I run your macro, and now my excel adds "-" instead of ","

:oops:

How to change the system settings back to normal?
 
Upvote 0
You need to change the characters in the macro to what you want.

To put it back:
Application.UseSystemSeparators = True
 
Upvote 0

Forum statistics

Threads
1,215,497
Messages
6,125,158
Members
449,208
Latest member
emmac

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