Using a Text Function with a Date/Time Returns an Error

Written by Allen Wyatt (last updated April 30, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


1

Tom has a date and time in a cell, such as 4/3/2022 9:50. I wants to extract just the date, and tried using a formula to do it: =LEFT(J2,FIND(" ",J2)). However, this returned a #VALUE! error, and Tom doesn't understand why.

The simplest explanation is that the LEFT function (which Tom uses in his formula) operates on string values, and a date/time is not a string value. Rather than deal with cell J2 (as Tom is), let's say you enter into cell A1 the date/time that he notes: 4/3/2022 9:50. If you then select cell A1, you'll see the following in the Formula bar:

4/3/2022 9:50:00 AM

There is a good chance that this will differ slightly from what is actually shown in cell A1, which tells you that what is in the cell is different than what Excel is showing. In fact, if you change the formatting of cell A1 to General, you'll see that what is shown in the cell (and Formula bar) is different:

44654.40972

In other words, the date/time value is nothing but a numeric value. This value is typically referred to as a serial number or a date/time serial number. You can find out more about serial numbers and how Excel stores dates and times in this ExcelTip:

https://tips.net/T11337

Since dates and times are stored, in Excel, as numeric values, they cannot be used with a string function such as LEFT. When you try, you get an error such as what Tom saw. The solution is to either (1) change the format of cell A1 or (2) use a formula to convert the date to the textual format you want.

To change the format of the cell, just select it and use the Number Format drop-down list (on the Home tab of the ribbon) to choose a format such as Short Date or Long Date. What is displayed by these formats depends on your regional settings in Windows, but it may very well give you just what you want. If you need a more specific date format, then you can create a custom format to get exactly what you want. You can find numerous tips about how to use custom formats in this ExcelTips category page:

https://excelribbon.tips.net/C0752_Custom_Formats.html

The cell formatting approach leaves the underlying date/time serial number unchanged. If you want to change the underlying serial number so that it only contains the date, then you simply need to strip off everything after the decimal point:

=INT(A1)

You would still need to format the result as a date to view it as you want. If you don't want to worry about formatting, then you need to consider the second approach—using a formula to convert to a textual format. This formula will do exactly what Tom wants, returning just the year of the value in cell A1:

=TEXT(A1,"m/d/yyyy")

The result of using this with Tom's original date is "4/3/2022", as a textual string.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12871) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Creating a Table of Authorities

In legal documents a table of authorities is a common element. Creating the table is easy to do if you apply the ...

Discover More

Changing the Size of a Graphic

Adding a graphic to a worksheet is easy. Getting that graphic to just the right size may take a little bit of trial and ...

Discover More

Counting the Results of a Formula Using Find and Replace

Need to get a count of a particular result from a formula? You can use Find and Replace (as described in this tip), but ...

Discover More

Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!

More ExcelTips (ribbon)

Determining Month Names for a Range of Dates

Given a starting date and an ending date, you may want to generate the names of all the months between those two dates. ...

Discover More

Pushing Dates Into Last Month

Excel is great when it comes to working with dates and times. You can even do math on dates. One such easy manipulation ...

Discover More

Weekdays in a Month

Want to find out how many of a particular weekday occurs within a given month? Here's how you can find the desired ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 6 + 5?

2022-05-01 04:09:09

Peter

I run into similar problems more or less daily in my work. Normally I use an european version of this formula. It works fine.
=MONTH(J2)&"/"&DAY(J2)&"/"&YEAR(J2)


This Site

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.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.