Application.DecimalSeparator Property

Excel Developer Reference

Sets or returns the character used for the decimal separator as a String. Read/write.

Syntax

expression.DecimalSeparator

expression   A variable that represents an Application object.

Example

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

Visual Basic for Applications
  Sub ChangeSystemSeparators()
Range("A1").Formula = "1,234,567.89"
MsgBox "The system separators will now change."

' Define separators and apply.
Application.<strong>DecimalSeparator</strong> = "-"
Application.ThousandsSeparator = "-"
Application.UseSystemSeparators = False

End Sub

See Also