Converting Dates to Text

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


Debbie has a worksheet that has many dates in it. To concatenate data with the dates, she has to edit each cell that contains a date and add an apostrophe before the date. She wonders if there is a quick way to do this. She has tried highlighting the row and formatting it as text, but that did not work.

If Debbie wants to automate the manual work she is doing, it could be done with a macro. The following automatically converts the selected cells to text and stuffs the date back into the cell.

Sub DateToText()
    Dim cell As Range
    Dim sTemp As String

    For Each cell In Selection
        With cell
            sTemp = .Text
            .NumberFormat = "@"
            .Value2 = sTemp
        End With
    Next cell
End Sub

Note the use of the .Value2 property instead of the .Value property when stuffing the text back into the cell. This is done to ensure that Excel doesn't inadvertently convert the text back into a date value. It shouldn't do it anyway, but the .Value2 property doesn't support the Date data type, so any potential conversion is, by nature, precluded.

You should also note that the macro will convert anything that you have selected, even if it doesn't contain a date. You'll want to make sure that you select only cells containing dates before running it.

Of course, the easiest way to do what Debbie is trying to do is to use the TEXT worksheet function. Suppose, for instance, that cell A1 contains a date. In a different cell you wanted to put the words "The deadline is " before the date. You could do that with a formula like this:

="The deadline is " & TEXT(A1, "mmmm d, yyyy")

Note that the TEXT function requires two parameters: The cell to be converted (A1, in this case) and a pattern to use in the conversion ("mmmm d, yyyy"). If cell A1 contains a date such 6/25/16, then the formula returns the following:

The deadline is June 25, 2016

The pattern you specify, within quotes, follows very closely the patterns you would use in defining a custom format for a cell. For instance, "mmm" returns a three-character month name while "mmmm" returns a fully spelled-out month name. The codes you would use in the pattern have been covered in other ExcelTips, but you can also find a handy summary of codes that conveniently correspond to what Excel uses at Wikipedia:

https://en.wikipedia.org/wiki/Date_format_by_country

An interesting point regarding this approach is that it doesn't really matter how the date in cell A1 is formatted. When you use TEXT, it relies on the underlying serial number used by Excel to store the date, and then formats it according to the pattern you specify—independent of any formatting in the cell containing the date.

Of course, if you want to do a straight conversion to text, you don't have to concatenate anything with the date. In this case, you would just use the TEXT function by itself:

=TEXT(A1, "mmmm d, yyyy")

The TEXT function, by nature, returns a strictly text value.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

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

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

Changing Built-in Word Commands

Want to replace Word's internal commands with your own macros? It's easy to do if you know the key discussed in this tip.

Discover More

Understanding and Using Bookmarks

Bookmarks are a great feature you can use to mark the location of text or to mark a position within a document. They can ...

Discover More

Adjusting a Range's Starting Point

Select a range of cells, and one of those cells will always be the starting point for the range. This tip explains how to ...

Discover More

Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!

More ExcelTips (ribbon)

Locking the Background Color

You can spend a lot of time getting the formatting in your worksheets just right. If you want to protect an element of ...

Discover More

Accurate Font Sizes

Need to use some bizarre font size in your worksheet? Not a problem, provided it is a full or half point size.

Discover More

Making a Cell's Contents Bold within a Macro

When your macro is processing information in a worksheet, do you need to periodically make the contents of a cell bold? ...

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 eight minus 8?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


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.