CellFormat.NumberFormat property (Excel)

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

Syntax

expression.NumberFormat

expression A variable that represents a CellFormat 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

The following example is for the NumberFormat function.


Range("A1:A5").Value = 12345
Range("A1:A5").NumberFormat = "0.00"
Range("A1:A5").NumberFormat = "General"

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.