Numbervalue Formula in Excel

“numbervalue formula in excel” comes up constantly, so this page leads with the exact answer, gives you a tool to try it on your own numbers, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

In Excel: use =VALUE(text) — it converts a number stored as text into a real number, so SUM and lookups stop ignoring it.

Syntax

=VALUE(text)

Arguments

ArgumentDescription
textrequiredText that looks like a number, date or time. Anything else returns #VALUE!.

Related functions

ISNUMBERTRIMSUBSTITUTE
ƒxData CleanerLive
Clean rows
3

1 duplicates · 1 blank rows removed · 0 replacements

Runs entirely in your browser — your data never leaves this page.
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

VALUE turns text that looks like a number into an actual number. It is the standard repair for imported data, where figures arrive as text and are then silently skipped by SUM, AVERAGE and every numeric lookup. It handles dates and times too, returning their serial numbers. Its limit is locale: a value using the wrong decimal or thousands separator for your settings returns #VALUE!, and that is what NUMBERVALUE exists for — it takes the separators as explicit arguments. Stray spaces and currency symbols also defeat it, so the robust form wraps the input in TRIM and SUBSTITUTE first. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. For “numbervalue formula in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Repairing an imported column: =VALUE(TRIM(A2)) converts " 1234 " into the number 1234. Handling a European format under US settings: =NUMBERVALUE(A2, ",", ".") reads "1.234,56" correctly. Stripping a currency symbol first: =VALUE(SUBSTITUTE(SUBSTITUTE(A2, "€", ""), " ", "")). VALUE fixes the most common single defect in imported spreadsheets: numbers that look right and behave like text. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. If you take one thing from this page on “numbervalue formula in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Passing text with a locale-foreign decimal separator, which errors — NUMBERVALUE takes the separators explicitly.
  • Forgetting currency symbols and non-breaking spaces from web pastes, which must be substituted out first.
  • Converting a column and leaving the formulas in place, so the "fixed" data still depends on the broken source.

Frequently asked questions

How do I convert text to a number in Excel?

=VALUE(A2), or Data → Text to Columns → Finish for a whole column in one pass without a helper.

Why does VALUE return #VALUE!?

The text is not recognisable as a number under your locale — usually a decimal separator mismatch or a stray symbol.

What is NUMBERVALUE for?

The same conversion with the decimal and grouping separators passed as arguments, which makes it locale-proof.