Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Converting Text to Values.
Written by Allen Wyatt (last updated June 5, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
If you are using Excel to massage data imported from another system, you know that often the data needs quite a bit of work. For instance, you might import information that represents a time value, but the data actually ends up being treated by Excel as a text string.
If you find your data in this condition, all is not lost. If you want to convert the text values into actual time values, there are several ways you can accomplish the task. The first is to follow these steps:
=VALUE(A1)
Figure 1. The Paste Special dialog box.
Once you get going with this process, it is pretty quick. Not as quick, however, as the following approach:
Figure 2. The Convert Text to Columns wizard.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11438) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Converting Text to Values.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
If you have a large number of values in a column, you may want to move the values that meet specific criteria to another ...
Discover MoreWhen you are copying a cell from one place to another (perhaps even to a different worksheet), you may not want to copy ...
Discover MoreWhen setting up a worksheet for others to use, you might want to make some limitations on what can be entered in certain ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-06-05 09:09:06
Joan Koskela
I use the second suggestion whenever I have this issue. The only step I add is, after I have selected the data to convert, I format the cells to how I want the data to display (e.g., include a comma for numbers over 999). This may be a suggestion for Tim Foxen to convert his data, but I'm not sure. If this doesn't work in his situation, I would suggestion using Replace to change the decimals to commas before trying to convert.
2021-10-19 04:56:29
Leslie Glasser
Commas or decimal points are simply conventions which may be altrered in Excel. Try this:
https://www.extendoffice.com/documents/excel/5229-excel-comma-to-decimal-point.html
2021-10-18 09:55:22
Tim Foxen
Hi, neither worked. I don't think it applies to my situation - a European/south african excel version that uses commas instead of decimals and reads decimals that get imported as text. So I need to convert the text (numbers with decimals) to numbers, with commas). If you have that solution, please let me know!!
2020-04-25 22:35:58
Leslie Glasser
These methods to convert text to numbers may fail when there hidden leading or trailing characters.
This array function will remove up to 10 such hidden characters (will work as dynamic array in Excel 2016; otherwise enter with Ctrl+Shift+Enter)
=VALUE(CONCAT(SUBSTITUTE(IFERROR(VALUE(SUBSTITUTE(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1),".",10)),""),10,".")))
from https://www.reddit.com/r/excel/comments/8imcd1/cant_convert_text_to_numbers_tried_everything/
(Author: dm_parker0)
2020-04-25 10:13:53
Mark Watson
If this is a task that needs to be done repeatedly I suggest using Power Query (Get & Transform).
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments