Forum Discussion
Cannot edit thousands separator
Hi,
Can anyone tell me why I get an error message everytime I try to add a comma to my thousands separator. I have tried to change region and it will not change? I keep getting the error noise.
1 Reply
- NikolinoDEPlatinum Contributor
Many roads lead to Rome, it was said in ancient times.
Nowadays one would say that there are many ways that can lead to a solution in Excel.
with formula:
=SUBSTITUTE(A1,".",",")*1
…and formula =--SUBSTITUTE(SUBSTITUTE(A1,",",""),".",",")
when formatted afterwards with custom cell format as #.##0,00.
or... thousands separator
In Excel, open "File" in the top left, then select "Options" on the left.
In the "Advanced" category, uncheck "Use separator from operating system".
Then enter the desired character (i.e. a point) for "Decimal separator" and "Thousand separator" and click on "OK".
or…
custom cell format: #,##0
or...with VBA
a examble
Sub seperator() Application.DecimalSeparator = "." Application.ThousandsSeparator = "," Application.UseSystemSeparators = False Range("B1").Formula = CDbl(Range("A1")) Application.UseSystemSeparators = True End SubHope I was able to help you with this information.
I know I don't know anything (Socrates)