Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.08 KB

Excel.Application.UseSystemSeparators.md

File metadata and controls

47 lines (29 loc) · 1.08 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.UseSystemSeparators property (Excel)
vbaxl10.chm133290
vbaxl10.chm133290
Excel.Application.UseSystemSeparators
eefa7bd0-9633-2f8a-cc80-61b1649fbace
04/05/2019
medium

Application.UseSystemSeparators property (Excel)

True (default) if the system separators of Microsoft Excel are enabled. Read/write Boolean.

Syntax

expression.UseSystemSeparators

expression A variable that represents an Application object.

Example

In this example, "1,234,567.89" is placed in cell A1. The system separators are then changed 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]