Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.05 KB

Excel.Application.DecimalSeparator.md

File metadata and controls

47 lines (29 loc) · 1.05 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.DecimalSeparator property (Excel)
vbaxl10.chm133288
vbaxl10.chm133288
Excel.Application.DecimalSeparator
2423d0dd-2b67-e8d2-c611-2bd3c8061f66
04/04/2019
medium

Application.DecimalSeparator property (Excel)

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, 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]