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

Sorting by Headings

Headings are a great way to organize your document. If, after getting your headings in place, you want to sort by those ...

Discover More

Nesting IF Worksheet Functions

The IF worksheet function is very handy to make conditional evaluations. You are not limited to a single IF comparison, ...

Discover More

Deciphering a Coded Date

It is no secret that Excel allows you to work with dates in your worksheets. Getting your information into a format that ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Calculating Weekend Dates

Do you look forward to the weekend? Well, you can use Excel to let you know when the next weekend begins. Here's how you ...

Discover More

Years in Which a Date Occurred on a Particular Day

If you need to know the years in which a particular date occurred on a specific day of the week, there are a number of ...

Discover More

Finding the Previous Work Day

Simple math will tell you what the previous day is (just subtract 1 from today's date). What if you want to know the date ...

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 four minus 0?

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.