Cell Data Types
- 4 minutes to read
Each cell in a worksheet has a value the CellValue object specifies. To access this object, use the CellRange.Value property. The data in a cell determines its value:
- If the cell does not contain any data, the cell value equals CellValue.Empty (CellValue.IsEmpty is set to true). Refer to the following article for more information: How to: Clear Cells of Content, Formatting, Hyperlinks and Comments.
- A constant assigned to the cell via the CellRange.Value property determines the cell’s value. In this case, the cell’s value is neither calculated nor changed.
- A value resulting from a formula assigned to a cell by the CellRange.Formula property determines the cell’s value. In this case, the cell’s value is calculated dynamically.
A cell’s value can be empty, numeric, text, Boolean or error, and can have various display formats. For example, a numeric value can be displayed as a decimal number, a percentage or currency, a date or time, etc.
Use the properties of the CellValue object returned by CellRange.Value to retrieve information about the cell’s value type, and get the cell’s value as an object of the corresponding type. To get the string specifying the formatted value as it is displayed in a cell, use the Cell.DisplayText property.
The table below lists the available cell value types and lists examples of how to input, format, display, and obtain these values.
Cell Value Type | Cell Content | Sample Input | Sample Display Format | Displayed String (Cell. |
Cell Type API | Cell Value API | More Examples |
---|---|---|---|---|---|---|---|
Empty | The default cell value type. If a cell contains any data, you can assign an empty value to it by setting the Cell |
cell. cell. |
![]() |
Cell |
Cell |
How to: Clear Cells of Content, Formatting, Hyperlinks and Comments | |
Numeric | The cell’s Cell |
cell. cell. |
cell. |
![]() |
Cell |
Cell |
How to: Specify Number or Date Format for Cell Content |
Numeric (Date and Time) | The cell’s Cell The cell’s Cell |
cell. workbook. cell. cell. cell. |
cell. |
![]() |
Cell |
Cell |
Dates and Times in Cells How to: Specify Number or Date Format for Cell Content |
Text | The cell’s Cell |
cell. cell. |
![]() |
Cell Cell |
Cell |
||
Boolean | The cell’s Cell |
cell. cell. |
![]() |
Cell Cell |
Cell |
||
Error | The cell’s Cell The cell’s Cell |
cell. cell. cell. |
![]() |
Cell Cell |
Cell |
Error Types | |
Image | The cell’s Value property is assigned to an image | cell. cell. cell. |
![]() |
Cell Cell |
Cell |
How to: Place a Picture in a Cell |