title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.ThousandsSeparator property (Excel) |
vbaxl10.chm133289 |
|
|
da244add-1c85-4636-2aff-b26feec215f3 |
04/05/2019 |
medium |
Sets or returns the character used for the thousands separator as a String. Read/write.
expression.ThousandsSeparator
expression A variable that represents an Application object.
This example places "1,234,567.89" in cell A1, and 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
[!includeSupport and feedback]