Skip to main content

Range.NumberFormat property

Table of contents
  1. Syntax
  2. Remarks
  3. Example

Returns or sets a Variant value that represents the format code for the object.

Syntax

expression.NumberFormat

expression A variable that represents a Range object.

Remarks

This property returns Null if all cells in the specified range don't have the same number format.

The format code is the same string as the Format Codes option in the Format Cells dialog box. The Format function uses different format code strings than do the NumberFormat and NumberFormatLocal properties.

Example

These examples set the number format for cell A1, B1, row one, and column C (respectively) on Sheet1.

Range("A1").NumberFormat = "General"
Worksheets("Sheet1").Range("B1").NumberFormat = "General"
Worksheets("Sheet1").Rows(1).NumberFormat = "hh:mm:ss"
Worksheets("Sheet1").Columns("C").NumberFormat = "$#,##0.00_);[Red]($#,##0.00)"

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>