How to convert text to date and number to date in Excel

The tutorial explains how to use Excel functions to convert text to date and number to date, and how to turn text strings into dates in a non-formula way. You will also learn how to quickly change a number to date format.

Since Excel is not the only application you work with, sometimes you'll find yourself working with dates imported in an Excel worksheet from a .csv file or another external source. When that happens, chances are the dates will export as text entries. Even though they look like dates, Excel won't not recognize them as such.

There are many ways to convert text to date in Excel and this tutorial aims to cover them all, so that you can choose a text-to-date conversion technique most suitable for your data format and your preference for a formula or non-formula way.

How to distinguish normal Excel dates from "text dates"

When importing data into Excel, there is often a problem with date formatting. The imported entries may look like normal Excel dates to you, but they don't behave like dates. Microsoft Excel treats such entries as text, meaning you cannot sort your table by date properly, nor can you use those "text dates" in formulas, PivotTables, charts or any other Excel tool that recognizes dates.

There are a few signs that can help you determine whether a given entry is a date or a text value.

Dates Text values
  • Right-aligned by default.
  • Have Date format in the Number Format box on the Home tab > Number.
  • If several dates are selected, the Status Bar shows Average, Count and SUM.
  • Left-aligned by default.
  • General format displays in the Number Format box on the Home tab > Number.
  • If several text dates are selected, the Status Bar only shows Count.
  • There may be a leading apostrophe visible in the formula bar.

How to distinguish dates from text strings in Excel

How to convert number to date in Excel

Since all Excel functions that change text to date return a number as a result, let's have a closer look at converting numbers to dates first.

As you probably know, Excel stores dates and times as serial numbers and it is only a cell's formatting that forces a number to be displayed as a date. For example, 1-Jan-1900 is stored as number 1, 2-Jan-1900 is stored as 2, and 1-Jan-2015 is stored as 42005. For more information on how Excel stores dates and times, please see Excel date format.

When calculating dates in Excel, the result returned by different date functions is often a serial number representing a date. For example, if =TODAY()+7 returns a number like 44286 instead of the date that is 7 days after today, that does not mean the formula is wrong. Simply, the cell format is set to General or Text while it should be Date.

To convert such serial number to date, all you have to do is change the cell number format. For this, simply pick Date in the Number Format box on the Home tab.

To apply a format other than default, then select the cells with serial numbers and press Ctrl+1 to open the Format Cells dialog. On the Number tab, choose Date, select the desired date format under Type and click OK.
Converting numbers to dates in Excel

Yep, it's that easy! If you want something more sophisticated than predefined Excel date formats, please see how to create a custom date format in Excel.

If some stubborn number refuses to change to a date, check out Excel date format not working - troubleshooting tips.

How to convert 8-digit number to date in Excel

It's a very common situation when a date is input as an 8-digit number like 10032016, and you need to convert it into a date value that Excel can recognize (10/03/2016). In this case, simply changing the cell format to Date won't work - you will get ########## as the result.

To convert such a number to date, you will have to use the DATE function in combination with RIGHT, LEFT and MID functions. Unfortunately, it is not possible to make a universal formula that will work in all scenarios because the original number can be input in a variety of different formats. For example:

Number Format Date
10032016 ddmmyyyy 10-Mar-2016
20160310 yyyymmdd
20161003 yyyyddmm

Anyway, I will try to explain the general approach to converting such numbers to dates and provide a few formula examples.

For starters, remember the order of the Excel Date function arguments:

DATE(year, month, day)

So, what you need to do is extract a year, month and date from the original number and supply them as the corresponding arguments to the Date function.

For example, let's see how you can convert number 10032016 (stored in cell A1) to date 3/10/2016.

  • Extract the year. It's the last 4 digits, so we use the RIGHT function to pick the last 4 characters: RIGHT(A1, 4).
  • Extract the month. It's the 3rd and 4th digits, so we employ the MID function to get them MID(A1, 3, 2). Where 3 (second argument) is the start number, and 2 (third argument) is the number of characters to extract.
  • Extract the day. It's the first 2 digits, so we have the LEFT function to return the first 2 characters: LEFT(A2,2).

Finally, embed the above ingredients into the Date function, and you get a formula to convert number to date in Excel:

=DATE(RIGHT(A1,4), MID(A1,3,2), LEFT(A1,2))

The following screenshot demonstrates this and a couple more formulas in action:
Converting number to date in Excel

Please pay attention to the last formula in the above screenshot (row 6). The original number-date (161003) contains only 2 chars representing a year (16). So, to get the year of 2016, we concatenate 20 and 16 using the following formula: 20&LEFT(A6,2). If you don't do this, the Date function will return 1916 by default, which is a bit weird as if Microsoft still lived in the 20th century :)

Note. The formulas demonstrated in this example work correctly as long as all numbers you want to convert to dates follow the same pattern.

How to convert text to date in Excel

When you spot text dates in your Excel file, most likely you would want to convert those text strings to normal Excel dates so that you can refer to them in your formulas to perform various calculations. And as is often the case in Excel, there are a few ways to tackle the task.

Excel DATEVALUE function - change text to date

The DATEVALUE function in Excel converts a date in the text format to a serial number that Excel recognizes as a date.

The syntax of Excel's DATEVALUE is very straightforward:

DATEVALUE(date_text)

So, the formula to convert a text value to date is as simple as =DATEVALUE(A1), where A1 is a cell with a date stored as a text string.

Because the Excel DATEVALUE function converts a text date to a serial number, you will have to make that number look like a date by applying the Date format to it, as we discussed a moment ago.

The following screenshots demonstrates a few Excel DATEVALUE formulas in action:
Convert text to date using the Excel DATEVALUE function.

Excel DATEVALUE function - things to remember

When converting a text string to a date using the DATEVALUE function, please keep in mind that:

  • Time information in text strings is ignored, as you can see in rows 6 and 8 above. To convert text values containing both dates and times, use the VALUE function.
  • If the year is omitted in a text date, Excel's DATEVALUE will pick the current year from your computer's system clock, as demonstrated in row 4 above.
  • Since Microsoft Excel stores dates since January 1, 1900 , the use of the Excel DATEVALUE function on earlier dates will result in the #VALUE! error.
  • The DATEVALUE function cannot convert a numeric value to date, nor can it process a text string that looks like a number, for that you will need to use the Excel VALUE function, and this is exactly what we are going to discuss next.

Excel VALUE function - convert a text string to date

Compared to DATEVALUE, the Excel VALUE function is more versatile. It can convert any text string that looks like a date or number into a number, which you can easily change to a date format of your choosing.

The syntax of the VALUE function is as follows:

VALUE(text)

Where text is a text string or reference to a cell containing the text you want to convert to number.

The Excel VALUE function can process both date and time, the latter is converted to a decimal portion, as you can see in row 6 in the following screenshot:
Using the Excel VALUE function to convert a text string to date

Mathematical operations to convert text to dates

Apart from using specific Excel functions such as VALUE and DATEVALUE, you can perform a simple mathematical operation to force Excel to do a text-to-date conversion for you. The required condition is that an operation should not change the date's value (serial number). Sounds a bit tricky? The following examples will make things easy!

Assuming that your text date is in cell A1, you can use any of the following formulas, and then apply the Date format to the cell:

  • Addition: =A1 + 0
  • Multiplication: =A1 * 1
  • Division: =A1 / 1
  • Double negation: =--A1

Converting text to dates via mathematical operations

As you can see in the above screenshot, mathematical operations can convert dates (rows 2 and 4), times (row 6) as well as numbers formatted as text (row 8). Sometimes the result is even displayed as a date automatically, and you don't have to bother about changing the cell format.

How to convert text strings with custom delimiters to dates

If your text dates contain some delimiter other than a forward slash (/) or dash (-), Excel functions won't be able to recognize them as dates and return the #VALUE! error.

To fix this, you can run Excel's Find and Replace tool to replace your delimiter with a slash (/), all in one go:

  • Select all the text strings you want to convert to dates.
  • Press Ctrl+H to open the Find and Replace dialog box.
  • Enter your custom separator (a dot in this example) in the Find what field, and a slash in the Replace with
  • Click the Replace All

Replacing a custom delimiter with a slash

Now, the DATEVALUE or VALUE function should have no problem with converting the text strings to dates. In the same manner, you can fix dates containing any other delimiter, e.g. a space or a backward slash.

If you prefer a formula solution, you can use Excel's SUBSTITUTE function instead of Replace All to switch your delimiters to slashes.

Assuming the text strings are in column A, a SUBSTITUTE formula may look as follows:

=SUBSTITUTE(A1, ".", "/")

Where A1 is a text date and "." is the delimiter your strings are separated with.

Now, let's embed this SUBSTITUTE function into the VALUE formula:

=VALUE(SUBSTITUTE(A1, ".", "/"))

And have the text strings converted to dates, all with a single formula.
Converting text strings with custom delimiters to dates

As you see, the Excel DATEVALUE and VALUE functions are quite powerful, but both have their limits. For example, if you are trying to convert complex text strings like Thursday, January 01, 2015, neither function could help. Luckily, there is a non-formula solution that can handle this task and the next section explains the detailed steps.

Text to Columns wizard - formula-free way to covert text to date

If you are a non-formula user type, a long-standing Excel feature called Text To Columns will come in handy. It can cope with simple text dates demonstrated in Example 1 as well as multi-part text strings shown in Example 2.

Example 1. Converting simple text strings to dates

If the text strings you want to convert to dates look like any of the following:

  • 1.1.2015
  • 1.2015
  • 01 01 2015
  • 2015/1/1

You don't really need formulas, nor exporting or importing anything. All it takes is 5 quick steps.

In this example, we will be converting text strings like 01 01 2015 (day, month and year are separated with spaces) to dates.

  1. In your Excel worksheet, select a column of text entries you want to convert to dates.
  2. Switch to the Data tab, Data Tools group, and click Text to Columns.
    Switch to the Data tab and click Text to Columns.
  3. In step 1 of the Convert Text to Columns Wizard, select Delimited and click Next.
    In step 1 of the Convert Text to Columns Wizard, select Delimited and click Next.
  4. In step 2 of the wizard, uncheck all delimiter boxes and click Next.
    On step 2, uncheck all delimiter boxes and click Next.
  5. In the final step, select Date under Column data format, choose the format corresponding to your dates, and click Finish.

In this example, we are converting the text dates formatted as "01 02 2015" (month day year), so we select MDY from the drop down box.
Choose the format corresponding to your dates, and click Finish.

Now, Excel recognizes your text strings as dates, automatically converts them to your default date format and displays right-aligned in the cells. You can change the date format in the usual way via the Format Cells dialog.

Note. For the Text to Column wizard to work correctly, all of your text strings should be formatted identically. For example, if some of your entries are formatted like day/month/year format while others are month/day/year, you would get incorrect results.

Example 2. Converting complex text strings to dates

If your dates are represented by multi-part text strings, such as:

  • Thursday, January 01, 2015
  • January 01, 2015 3 PM

You will have to put a bit more effort and use both the Text to Columns wizard and Excel DATE function.

  1. Select all text strings to be converted to dates.
  2. Click the Text to Columns button on the Data tab, Data Tools group.
  3. On step 1 of the Convert Text to Columns Wizard, select Delimited and click Next.
  4. On step 2 of the wizard, select the delimiters your text strings contain.

    For example, if you are converting strings separated by commas and spaces, like "Thursday, January 01, 2015", you should choose both delimiters - Comma and Space.
    Select the delimiters your text strings contain.

    It also makes sense to select the "Treat consecutive delimiters as one" option to ignore extra spaces, if your data has any.

    And finally, have a look at the Data preview window and verify if the text strings are split to columns correctly, then click Next.

  5. On step 3 of the wizard, make sure all columns in the Data Preview section have the General format. If they don't, click on a column and select General under the Column data format options.

    Note. Do not choose the Date format for any column because each column contains only one component, so Excel won't be able to understand this is a date.

    If you don't need some column, click on it and select Do not import column (skip).

    If you don't want to overwrite the original data, specify where the columns should be inserted - enter the address for the top left cell in the Destination field.

    When done, click the Finish button.
    Make sure all columns have the General format and choose where to insert the columns.

    As you see in the screenshot above, we are skipping the first column with the days of the week, splitting the other data into 3 columns (in the General format) and inserting these columns beginning from cell C2.

    The following screenshot shows the result, with the original data in column A and the split data in columns C, D and E.

    Text strings are split into 3 different columns.

  6. Finally, you have to combine the date parts together by using a DATE formula. The syntax of the Excel DATE function is self-explanatory:
    DATE(year, month, day)

    In our case, year is in column E and day is in column D, no problem with these.

    It's not so easy with month because it is text while the DATE function needs a number. Luckily, Microsoft Excel provides a special MONTH function that can change a month's name to a month's number:

    =MONTH(serial_number)

    For the MONTH function to understand it deals with a date, we put it like this:

    =MONTH(1&C2)

    Where C2 contains the name of the month, January in our case. "1&" is added to concatenate a date (1 January) so that the MONTH function can convert it to the corresponding month number.

    And now, let's embed the MONTH function into the month; argument of our DATE formula:

    =DATE(F2,MONTH(1&D2),E2)

And voila, our complex text strings are successfully converted to dates:
The text strings are successfully converted to dates.

Quick conversion of text dates using Paste Special

To quickly convert a range of simple text strings to dates, you can use the following trick.

  • Copy any empty cell (select it and press Ctrl + C).
  • Select the range with text values you want to convert to dates.
  • Right-click the selection, click Paste Special, and select Add in the Paste Special dialog box:
    Quick conversion of text dates using Paste Special
  • Click OK to complete the conversion and close the dialog.

What you have just done is tell Excel to add a zero (empty cell) to your text dates. To be able to do this, Excel converts a text string to a number, and since adding a zero does not change the value, you get exactly what you wanted - the date's serial number. As usual, you change a number to the date format by using the Format Cells dialog.

To learn more about the Paste Special feature, please see How to use Paste Special in Excel.

Fixing text dates with two-digit years

The modern versions of Microsoft Excel are smart enough to spot some obvious errors in your data, or better say, what Excel considers an error. When this happens, you will see an error indicator (a small green triangle) in the upper-left corner of the cell and when you select the cell, an exclamation mark appears:
Error indicators in Excel

Clicking the exclamation mark will display a few options relevant to your data. In case of a 2-digit year, Excel will ask if you want to convert it to 19XX or 20XX.

If you have multiple entries of this type, you can fix them all in one fell swoop - select all the cells with errors, then click on the exclamation mark and select the appropriate option.
Fixing text dates with two-digit years using Excel Error Checking

How to turn on Error Checking in Excel

Usually, Error Checking is enabled in Excel by default. To make sure, click File > Options > Formulas, scroll down to the Error Checking section and verify if the following options are checked:

  • Enable background error checking under Error Checking;
  • Cells containing years represented as 2 digits under Error checking rules.

Turning on Error Checking in Excel

How to change text to date in Excel an easy way

As you see, converting text to date in Excel is far from being a trivial one-click operation. If you are confused by all different use cases and formulas, let me show you a quick and straightforward way.

Install our Ultimate Suite (a free trial version can be downloaded here), switch to the Ablebits Tools tab (2 new tabs containing 70+ awesome tools will be added to your Excel!) and find the Text to Date button:
Text to Date tool for Excel

To convert text-dates to normal dates, here's what you do:

  1. Select the cells with text strings and click the Text to Date button.
  2. Specify the date order (days, months and years) in the selected cells.
  3. Choose whether to include or not include time in the converted dates.
  4. Click Convert.

That's it! The results of conversion will appear in the adjacent column, your source data will be preserved. If something goes wrong, you can simply delete the results and try again with a different date order.
Converting text-dates to normal dates

Tip. If you chose to convert times as well as dates, but the time units are missing in the results, be sure to apply a number format that shows both the date and time values. For more info, please see How to create custom date and time formats.

If you are curious to learn more about this wonderful tool, please check out its home page: Text to Date for Excel.

This is how you convert text to date in Excel and change dates to text. Hopefully, you have been able to find a technique to your liking. In the next article, we will tackle the opposite task and explore different ways of converting Excel dates to text strings. I thank you for reading and hope to see you next week.

706 comments

  1. I am having trouble converting multiple dates from 8 dates to format of yyyy/mm/dd. I tried the formula =DATE(RIGHT(E5,4), MID(E5,3,2), LEFT(E5,2)) I tried applying formula to multiple cells (E5-E133 & F5-F133) with no success. Please help.

      • Here are some examples of the data I am trying to convert from 8 digits to yyyy/mm/dd. I have tried the formula listed above from this site and it only allowing me to input one cell on the column. Is there a formula to convert one cell and apply formula to all 8 digit dates listed in column?

        Example:
        20240201 20240202
        20240315 20240315
        20240314 20240314
        20240313 20240313
        20231016 20231016
        20240313 20240313
        20230831 20230831

  2. Good afternoon all,

    I am trying to create a dynamic spreadsheet that changes as I change a specific field's date.

    I would like a number of cells to reference this cell's date within their name. eg, "Number of projects created since 03/03/24". However the formula that I have tried to use below only gives me the date's numerical reference.

    ="Number of projects created since "&J3&"." - The formula I am using

    "Number of projects created since 45354." - What the formula gives me

    How do I make this number show up as a date instead?

    Thank you.

    Billy

  3. Very helpful. All of the conversion information saves time!

  4. Hi,
    I need to convert a date from 102 (1st of February) and 1104 (11st of April) of the year 2021 to 01.02.2021 and 11.04.2021 (tt.mm.yyyy)
    both dates are in one column.

    Would be grate if you could help
    Thank you

  5. Hi! I have a data set that has format of 202203. So yyyymm

    It shows an exclamation of text stored as number.

    I convert to number.

    I tried using =Date(Left(AN2, 4), Mid(AN2, 5, 2)) - excel says not enough arguments. I'm assuming b/c I'm not trying to extract a day.

    How do I convert this to 03/2022? My ultimate goal is to find time between 2 dates like this that are in 2 separate columns.

    Thanks!

    • Hi! A date is a day. Therefore, add a day to the DATE formula. For example,

      =Date(Left(AN2, 4), Mid(AN2, 5, 2), 1)

      03/2022 is not a date, but text. You can show the date 01/03/2022 as 03/2022 by using the custom date format mm/yyyy.

      • Thank you for the quick reply! I used the suggested formula and it returned 1/0/1900?

        • Hi! I wrote this formula based on the description you provided in your original comment. The formula works correctly with the data you wrote: the number 202203, which is stored as text in cell AN2. This text may contain spaces or other characters you did not mention.

      • I am getting the 202203 value from an index/match formula.

        It looks like if I just ignore the error that this value is a number stored as text, then apply your suggested formula it returns the date of 3/1/2022. Which is perfect so I'll just go that route :)

  6. Hello,

    I have the date 1987 Apr that i am trying to convert to EOMonth mm/dd/yyyy. Please help

  7. Hi! How can I convert YYYY-MM to MM/YYYY format? Please help

  8. Hello,
    I used Oracle and exported a .csv file. This is how I got it:

    August 01, 2023 14:00:00

    Now I cannot sort it from old to new and vice versa, so what can be done to make it in DATE format? I have done a lot but unable to achieve anything.

  9. How would I convert a date formatted as 1st Mar 23 7:50AM, into 01/03/23, Thanks.

    • Hi! To get a date from text, extract the year month and day from the text. Then use the DATE function to get the date. You can extract the year month and day from text using substring functions, and you can also use the TEXTSPLIT and CHOOSECOLS functions. TEXTSPLIT will divide the text into parts by spaces, and CHOOSECOLS will help you select the part of the text where the year, month or day is written.

      =DATE(20&CHOOSECOLS(TEXTSPLIT(A1," ",),3), MONTH(1&CHOOSECOLS(TEXTSPLIT(A1," ",),2)), LEFT(LEFT(A1,SEARCH(" ",A1)-1),LEN(LEFT(A1,SEARCH(" ",A1)-1))-2))
      or
      =DATE(20&MID(A1,SEARCH(" ",A1,6)+1,2), MONTH(1&MID(A1,SEARCH(" ",A1,3)+1,3)), LEFT(LEFT(A1,SEARCH(" ",A1)-1),LEN(LEFT(A1,SEARCH(" ",A1)-1))-2))

      I recommend paying attention to the Text to Date tool. This tool easily converts text strings of different formats to dates in one click. The tool is included in the Ultimate Suite for Excel and can be used in a free trial to see how it works.

  10. Hi.
    Please help me to convert this data ISSUE DATE-1-10-2017 into a date format like 01-Oct-2017. I tried many times but it didn't work.

    Thank you

  11. how to change this date format December 14, 2023 to 14/12/2023

  12. how to convert 29/12/2023 at 06:08:50.000 PM into 2021-12-31T09:23:06.369Z

  13. Hi, I am trying to convert text to date/time so I can use a filter to put them in chronological order. As the dates/times are transactions they are in the following format: DD/MM/YYYY HH:MM:SS and I cannot seem to convert them and filtering via text does not work correctly. I would also like this format to be set in a template that can be downloaded and used by other colleagues so whatever is input in that column can be filtered in the same way, even if it is copy/pasted, as opposed to everyone having to use a formula each time. Is this possible?

    • Hi! To convert text to date and time, I recommend using math operations (multiply by 1) or Paste Special (add zero) as described in the article above.

  14. Hi,

    I was trying to convert this 10012023 to 10/01/2023, i tried this formula, =TEXT(DATE(RIGHT(T4,4),LEFT(T4,1),MID(T4,2,2)),"MM/DD/YYYY") but the result is this 01012023.

    Thank you for the help

    • Hi! Please pay attention which characters you extract using the LEFT and MID functions. Try the formula:

      =TEXT(DATE(RIGHT(T4,4),LEFT(T4,2),MID(T4,4,2)),"MM/DD/YYYY")

      You can use the formula

      =DATE(RIGHT(T4,4),LEFT(T4,2),MID(T4,4,2))

      Apply the date format "MM/DD/YYYYYY".

  15. HI,

    This is awesome. Thank you very much. i have my date imported in this format ~40464%, please how do i convert it.

  16. Hi Dev Team,
    I have the data like this :
    Sep 26, 1989

    But I apply the date with this formulae:
    =DATE(YEAR(cell),MONTH(cell),DAY(cell)).

    It shows me error. PLease suggest me

    • Hi! If I understand correctly, your date is written as text. Use substring functions to extract separate parts of the date from the text string. Try this formula:

      =DATE(RIGHT(A1,4), MONTH(1&LEFT(A1,3)), MID(A1,5,2))

      I recommend paying attention to the Text to Date tool. This tool easily converts text strings of different formats to dates. It is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and check how it works for free.

      • I will really pay the attention on this.
        Thanks 1000 times.

  17. 2023/10/09 08:36:51

    Hi, I am struggling to put this date and time format in general or text format that still displays as per above that it can be utilized in a pivot table.
    If I put it in general format it displays as

    45208 3589236111

  18. GMT
    2022_121:00:00:00.000
    2022_122:00:00:00.000
    2022_123:00:00:00.000
    2022_126:00:00:00.000

    I need to convert the above GMT time to a time usable by excel.
    The above is what is entered into the cell by the data pull. I need to pull a time delta between the value, but i need to convert into something usable by excel.
    THanks

  19. Hi can any one share that how we can add text in my date in once cell showing e.g (Date as of : 03-Oct-23)

  20. Wow this is fantastic info! What formula would convert Aug182023 to a date format? All the dates have a three letter month, two number day, and four number year. (I don't want to use the Text to Columns wizard.)

  21. I'm trying to change this 2016-08-08T13:00:00.000Z to 2016-08-08 in excel

  22. Svetlana Cheusheva
    I cannot thank you enough.
    You are my Hero!

  23. I need help to convert date 07-01-2002 from below
    20020701

  24. Need to convert YYMMDDHHMM to DDMMYY format. Can someone help

  25. Nice formual to use in excel. Thanks.

  26. Dear Svetlana, Alexander,

    Unless I misread and missed an answer to my issue in your post and other solutions, would you be able to give a hint how to deal with the following situation?

    I am working on a Dutch machine and receive dates hard-coded in the csv file as "21MAR2024". Data import GUI offers "DMY" option how you suggest, but my Excel is unable to read the result. It would it read it had it "21MRT2024" written been.

    Without installing another language pack, writing a macro or substituting "MAR" with "MRT", is there any other way to force Excel to recognize the correct date in my case?

    Regards,

      • Dear Alexander,

        Thank you for a quick answer!

  27. I have a date that shows as 18/11/2015 10:04:38 AM that is generated from an external database. The number format is General. I have tried several tips you suggested above to convert to a date format i can use for my pivot table, but none works. Can you help?

  28. how to covert Friday, March 03, 2023 4:42:12 PM to 3/3/2023 16:42

  29. Thank you much. You helped me a lot!

  30. if Feb'23 then result should be 1-Feb-2023 and in next cell 28-Feb-2023 (ie. start date and end date); if its Jan23-Mar23 it should be 1-Jan-2023 and 31-Mar-2023. Please help me with this

  31. I have dates in the format 02-12-2022 and I want to convert them to 02-Dec-2022. I am using the below formula but it does not see to work after day 12th.

    =IF(ISNUMBER(C2),DATE(YEAR(C2),DAY(C2),MONTH(C2)),DATE(MID(C2,LEN(C2)-3,4),LEFT(C2,LEN(C2)-8),MID(C2,LEN(C2)-6,2)))

    If I apply this formula to 12-12-2022 it gives me 12-Dec-2022 but as soon as the day value changes to 13 i.e, 13-12-2022 it gives 12-Jan-2023.

    Please help!!!!

    • Hi!
      If I understand your task correctly, try the following formula:

      =IF(ISNUMBER(C2),DATE(YEAR(C2),DAY(C2),MONTH(C2)),DATE(MID(C2,LEN(C2)-3,4),MID(C2,LEN(C2)-6,2),LEFT(C2,LEN(C2)-8)))

      I'd recommend you to have a look at our Text to Date tool. This simple tool effortlessly converts text strings of different formats into dates without formulas. It is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and check how it works for free.

  32. Hello. Is there a way to translate a sequence of numbers in to date and time. As an example, to convert 2303252000 to 25/03/2023 20:00. This format is used by ICAO on NOTAM YYMMDDhhmm.

  33. Hello,
    Im trying to insert data from MSSQL with SSIS into Excel. In MSSQL date is DATETIME or DATETIME2, everything looks good until insert into excel when excel formats it by itself to DATE without TIME in the rows and date with time is shown only in formula box. How to set Excel so it will show exactly as im importing from database with DATETIME in rows and it is DATE type in excel also with time in rows?
    Thanks for your help.

  34. Hi. I have a problem that I can not solve. I have a Serial Number of equipment i.e 1Z6A08655AT. I need to take out from it the production date - these is represented by two first characters 1Z. 1 stands for 2021, Z stands for December.

    First character indicating Year
    1 is 2021,
    2 is 2022,
    3 is 2023
    ...

    Second represent months:
    1,2,3,4,5,6,7,8,9, X,Y,Z

    I need to have outcome in mmm-yy format

    No idea how to deal with it. Appreciate if you could share how to fix this ;)

    • Hi!
      Use the MATCH function to find a match for the month character.

      =MATCH(MID(A1,2,1), {"1","2","3","4","5","6","7","8","9","X","Y","Z"}, 0)

      To get the year, use this formula

      LEFT(A1,1)+2020

      Use the DATE function to get the production date.

      =DATE(LEFT(A1,1)+2020, MATCH(MID(A1,2,1), {"1","2","3","4","5","6","7","8","9","X","Y","Z"},0),1)

      Hope this is what you need.

      • This was awesome. I just coincidentally had the same challenge and this helped massively. Thank you

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)