Back to functions
Text2026-03-143 related articles

VALUE Function in Excel

Convert a text representation of a number, date, or time into a numeric Excel value.

Syntax

VALUE(text)

Arguments

text

Required

The text string Excel should interpret as a number, date, or time.

What it returns

Returns the numeric value represented by the text.

What VALUE does

VALUE converts text into a real numeric value when Excel recognizes the pattern. It is often used when imported data looks right on screen but behaves like text in formulas.

Practical examples

Convert numeric text

=VALUE(A2)

If A2 contains "1250" as text, VALUE returns a real number that can be used in math.

Convert a date string Excel understands

When a text date follows a recognizable local format, VALUE can convert it into an actual date serial number.

Common mistakes and notes

VALUE depends on recognizable formatting

If the source text does not look like a valid number, date, or time for your locale, Excel returns an error.

Formatting still matters after conversion

Once VALUE returns a number, you may still need to format the cell as a date, currency, or time to make the result readable.

Related functions

Related articles

Deep dives, troubleshooting guides, and practical examples that use VALUE.

Official documentation