Quick Answer

VALUE Function

Turns number-like text into an actual number.

✓ Excel✓ Google SheetsExcel All versions

Syntax

VALUE
(text)

Parameters

ParameterDescriptionRequired
textThe text enclosed in quotes or a cell reference containing text that looks like a number.Required

Basic Example

Convert a numeric text string

=VALUE("123.45")
Result123.45

The quoted text is parsed into the numeric value 123.45.

Advanced Examples

Example 1: Convert currency text

A cell A1 contains the text "$1,000"

Strip formatting and get a number

=VALUE(A1)
Result: 1000
VALUE understands currency symbols and thousand separators, returning the numeric 1000.

Example 2: Convert a time string

Cell A1 holds "6:00" as text

Get the fractional day value

=VALUE("6:00")
Result: 0.25
Times are stored as fractions of a day, so 6:00 AM equals 0.25.

How VALUE Works

VALUE parses the text using the workbook's locale settings for decimals, thousands separators, currency, dates, and times, and returns the corresponding serial number. In modern Excel, many functions coerce text automatically, so VALUE is less often required.

1
Locate the text
Find the cell whose text looks like a number.
2
Apply VALUE
Enter =VALUE(cell) and press Enter.
3
Verify the type
The result is now a real number usable in math.

Important Notes & Limitations

  • If the text is not recognizable as a number, VALUE returns #VALUE!.

  • Date and time parsing depends on the system locale.

  • Largely redundant in modern Excel because arithmetic and functions auto-coerce text numbers.

Common Errors & Fixes

#VALUE! errorThe text contains non-numeric characters VALUE cannot interpret.

Fix: Clean the text with functions like SUBSTITUTE or CLEAN before converting.

Wrong decimal interpretationLocale uses a comma as the decimal separator but the text uses a period.

Fix: Match the text format to the workbook locale or use SUBSTITUTE to swap separators.

Download Practice File

Practice VALUE with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the VALUE function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

Is VALUE still needed?
Often not; arithmetic and functions like SUM auto-convert text numbers, but VALUE is explicit and clear.
Does VALUE handle dates?
Yes, it converts date/time text into the underlying serial number.
What is the opposite of VALUE?
TEXT, which formats a number back into a text string.