Comments on: How to change date format in Excel and create custom formatting

The first part of our tutorial focuses of formatting dates in Excel and explains how to set the default date and time formats, how to change date format in Excel, how to create custom date formatting, and convert your dates to another locale. Continue reading

Comments page 2. Total comments: 555

  1. Hi, I have dates that are in US custom format - 04/01/2023 13:00 the custom format is dd/mm/yyyy hh:mm.

    I need the dates to be in UK format, I've tried using the text to columns approach but this doesn't work as the dates are in a custom format not text. Even after changing the format to text his doesn't work

    Creating my own custom format - [$-409]dd-mmm-yyyy hh:mm AM/PM doesn't solve the issue that the days and months are the incorrect way around.

    Do you know how I can change the dates to be 01/04/2023 13:00 instead of 04/01/2023?

    1. Hi! If I understand your task correctly, try the following date format: mm/dd/yyyy hh:mm instead of dd/mm/yyyy hh:mm

  2. Hi, I have a file some dates showing 2023-11-01, some showing 01/11/2023, but I cannot align them as 202-11-01 even i have try above methods, any one got any ideas on this?

    1. Hi! I'm assuming your dates are recorded as text. This has been discussed many times in the comments below. Use the substring functions LEFT, RIGHT and MID to extract the numbers you need and use them in the DATE function.
      For example, for text 01/11/2023 try this formula:

      =DATE(RIGHT(A2,4),MID(A2,4,2),LEFT(A2,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.

      1. Thanks for the reply. I have checked but the cell has been set up as YYYY-MM-DD format but it's just showing slash format no matter how. Thanks for this formula which helped to resolve the problem; just found another way to get this corrected - copy the date and then paste special-add also help.

        1. Great ... This helped me

  3. How do I convert date to number in months
    Start End Months
    24/10/2023 21/04/2024 6
    25/10/2023 24/11/2023 1

  4. Hi.
    How can i convert date in this format MM/DD/YY to weeks in a year i.e Week 30

  5. Hello, how can I convert from YYMM --> 2203 to become actual month and year --> Mar 2022 ??

  6. Why does INT(2023-01-06T00:00:00Z) lead to an error, instead of isolating the DATE?

    I can't find a way to remove the time from the timestamp; always get Error Value!

  7. Using Format/Format Cells... to alter "mm/dd/yyyy" to Custom "d mmm yyyy" worked, but not for 19th century dates.

  8. how to change year format for example 01-sep-2023 to 01-sep-2024

  9. 23rd Aug 2023 convert to 23-Aug-23 format

  10. Hi Alex,
    My Excel show as 08-01-2023 18:00 and read as by excel as 8 Januari 2023 09:00 PM.
    How to change excel to read as 1 August 2023 09:00 PM ? I usually using text to column, but now its not working, maybe because there's hour number in that date.. I dunno..

    1. Use text to coloumn and change the mdy into dmy

  11. Can someone help how to fill the dates in series without changing the hh:mm?
    07-Dec-22 16:20
    00-Jan-00 16:22
    00-Jan-00 16:27
    00-Jan-00 16:36
    00-Jan-00 17:03
    00-Jan-00 18:09
    00-Jan-00 18:28
    00-Jan-00 18:38
    00-Jan-00 18:49
    00-Jan-00 19:06
    00-Jan-00 19:18
    00-Jan-00 19:28

  12. Is there way to change a mm/dd/yyyy date into the week of the month or week of the year it falls into?

  13. Bagaimana kalau mau tulisan bulannya huruf kapital
    contoh JULI 15, 2023

    1. If you use "mmmm" in the date format, you will get the first letter of the month capitalized. To capitalize the entire month name, convert the date to text using the TEXT function and UPPER function. For example,

      =UPPER(TEXT(A2,"dd.mmmm.yy"))

  14. how to write date in format March' 2021

  15. What date would it be in 41.56 years from now

  16. How to conert date 01/01/2020 to 01.01.2020

    1. Go to replace: replace from / to .

  17. Hi, I am trying to format date in excel but a hashtag # keeps displaying from the output.

    1. Hi! Specify which date you are trying to format and which format template you are using. Also pay attention to the width of the column. Perhaps the column needs to be wider.

  18. Your articles are excellent – very clear and complete. I find them very useful. In this one the section "How to create a custom Excel date format for another locale" seems to omit a couple of details that interest me. My MSOffice language is UK English and I have a workbook where I want to optionally be able to display everything in German. For cells containing dates I find that, as you say, a format like "[$-407]d mmm yy" displays dates in German. But when dates are displayed in German it is logical to expect to be able to enter them in German too, but I am finding with (Excel 2010, Win10) that Excel does not apply the locale code in the format to input. For example, if I enter "3 okt" Excel does not recognise that as a valid date: it accepts only "3 oct". Is there any way to get Excel to parse input in German, or any other locale than the current MSOffice language? (If conditional formatting can do it, that would be a solution. I'm also competent in VBA.)
    A second point you didn't mention is that when my workbook is opened on a French computer the cell format I just mentioned now needs to be "[$-407]j mmm aa". Should Excel notice when a workbook developed on an English computer is being opened on a French one, and convert cell formats automatically? Or should I expect to have to do this myself in a VBA workbook-open event or suchlike?

    1. Hi! If you do not use the standard date formats, but use custom formatting and specify a country code, Excel will not change the code on its own. Also, the date entry format depends only on your computer's local settings.

  19. Hello,
    I downloaded an ebay report and want to convert this date/time format: Sep-26-20 20:29:03 PDT to: 09/26/2020
    I've eliminated the trailing characters with the =left function and that left me with Sep-26-20 but I cannot get that to convert to 9/26/20. I tried changing the format but that did not correct the format. I would appreciate any tips of help to move this forward. Thanks!

    1. Hi!
      Extract the required text strings with the MID and LEFT function. Create a date using the DATE function.
      I believe the following formula will help you solve your task:

      =DATE(20&MID(A1,8,2),MONTH(DATEVALUE(1&LEFT(A1,3))),MID(A1,5,2))

      1. Absolutely brilliant. Thank you!

  20. Hi. I want to change my this date format 31/10/2022 12:49 AM to 2022-10-31T00:49:00 this format in excel how can I do it? Help me find this out.

    Thanks in advance.

    1. I want to change my date from 3/27/2023 to 03/23/2023 the date is on left hand side instead of right hand side.

      Have read the article more than twice and tried all the suggestions but non work for what I want.

      Please kindly help.

  21. how to change number format to Date format Ex: 20230207 to07/03/2023

  22. Hi,
    I changed the date locale to German so the date I enter displays in the German format d/m/y. However, I still have to enter the date in the US way m/d/y.
    How can I change the cell so that I can enter the date in the German way?

    1. Hi!
      Follow the instructions in this paragraph above: How to change the default date and time formats in Excel.

  23. Hi Alex, I have this problem:
    A list with some dates in this format mm/dd/yyyy, others like this mm/yyyy, and others only like this yyyy. The first two excel can handle fine, but the yyyy can't, for example, I have 2022 and excel transform to 7/14/1905, but I neet to transform into 01/01/yyyy if no, I can't sort by oldest or newest.
    Do you know any solution to this?

    1. I have thousands of date data, some are aligned to right hand side as date, while others aren't and are at left side.

      The one on the left are in m/dd/yyy as against mm/dd/yyy.

      Have formated the cells, value which gives me #VALUE! , date and date value as #Value!.

      Please kindly help on how to make all my date mm/dd/yyy and to be on right hand side.

      Thanks.

      I

  24. I want to change date format from 04/26/2018 to 26/04/2018. I tried using all custom options but there is no change, please suggest some formula for the same

  25. Hi Alex!
    Thanks for this detailed and helpful post about time format customization...
    I am looking for a custom formating which, when I enter a decimal number, just show it as time.
    Want to change decimal point (.) to colon ( : )
    For example if I enter 11.39, I want it to show in cell as 11:39.
    Is it possible???

  26. hello i would like to ask. in my excel, the date is put as General format. example: 202302 which stands for 2023/02. so how can i format it to 2023/02 since i need to calculate the remaining months between 202302 and 202501 as well. hence i would like to ask on answer for this. thanks a lot!

  27. Is there a way to change the how the date displays based on the value of the cell? I haven't seen this option in conditional formatting. What I want to do is display all dates in months except for May, June, and July as mmm. d (ex. Jan. 1, Feb. 7, Dec. 31, etc) and then the May, June, and July dates to be spelled out without a period (May 31, June 6, July 16). Is there a way to do this directly in the cell so I can just enter it as 6/1/22 and it get formatted as June 1 or (in the same cell) enter it as 8/31/22 and it get formatted to Aug. 31?

    I figure I could use a helper column with an if function maybe, but it would be better if I could get the settings to work directly. Thanks!

  28. Hi Alexander,
    I actually couldnt find the following problem any where if i try to look it up.
    I am trying to format the cells to change an input of (for example) 11 to 11:00.
    But when i set the cellformat to -Time- it changes the value to 11-01-1900 00:00:00.

    Even when using custom formatting to (hh:mm) it still converts the 11 into a date and time.
    Is there a way where i can input an absolute number ranging from 0 to 72 and have excel convert is to a hh:mm format?

    Thanks a million.

  29. Hi Alexander,

    I am getting error value with DATEVALUE(06/12/2022). Can you please suggest me.

    Thanks

  30. I want to change this format 02.11.2022
    into 2022-11-02

    1. =DTAE(RIGHT(A1,4),MID(A1,4,2),LEFT(A1,2))

  31. Dear Team
    How can I convert following time format through a formula 3 hr. 21 min. into 3:21 format.
    Thanks in advance

      1. IT IS WORKING VERY WELL,
        THANKS A LOT

  32. Hi guys, is it possible to change date and time format to days?
    e.g.

    from:
    25/10/2022 0:00
    to:
    Day 1

    and

    from:
    26/10/2022 0:00
    to:
    Day 2

    Thanks

  33. Hey Alexander! Thank you for all the nice reply for people! I am Sure you do a lot of good!

    I have a problem when trying to import CSV into excel as numbers that are displayed is not the same as in the console. This is an issue as I need the number-value, but the console shows a long-date with clock aswell.

    For an example:
    Value: Console:
    880 is 05/02/1900 16.00.00
    1077 is 13/02/1900 21.00.00
    1104 is 15/02/1900 00.00.00
    2000 is 23/03/1900 08.00.00
    Etc. Etc.

    I want to get the values and stop it from avoiding giving me what's in the console. What is the issue here excactly and how do I bypass this? I tried with a xlookup, datevalue and so forth, but nothing works! It is like the numbers printed are belived to be long-date format with time. I need the Value-data as shown above, and I need some kind of formular who can convert the console-values displayed to the right above, to the values displayed to the left above.

    Appreciate your help!

  34. How about converting this date format (when pasting from another spreadsheet) - 2022-04-13 09:58:14
    I would like it to simply be short date mm/dd/yyyy, no matter how I format the cells before I paste, I always get this silly format. I don't want to have to use text to columns every time. Is it possible? It is this format in like 3 columns worth of data for all my lines. I need to be able to update this report swiftly.

  35. Hi Sir,
    Need your help to provide me a formula to change below date & time which is combined as number

    20220804090848 (yyyymmddHHmmss)

    I need it as, dd/mm/yyyy HH:mm:ss

    Thanks.

  36. Hi i have text format like this 2007-May-24 00:00:0000. How can i convert this into date and time format as this 24-05-07 00:00 ? Please help

  37. Hi! Newer to excel and need help to save time please!
    In one column I've entered times (about 500+rows) like this: 2105 (as in 21:05). Unfortunately, at the time creating the sheet, I did not have the knowledge or wherewithal to change the format of the column to the 24 hr format (hh:mm) and I only kept it in plain number format. So, my problem is I don't want to go and correct all 500+ entries individually. Is there a formula I can use to switch 2105 to 21:05 (plain number format to time format)?? Please? Help?

      1. Thank you!

  38. I am trying to convert these numbers 154975.4857, & 145454.2432 from a csv file to minutes and seconds.

  39. I have date written in the format 20181019 and i need to re-write them using slash, that is 2018/10/19.
    Approximately there are 20k of these dates i need to change. How can i do this. Thanks

  40. Hii
    I have multiple dates like 15/03/2020 in a SINGLE CELL but i want to change the date format as 2020-03-15
    Note:- in a single cell multiple dates to be change!!

    1. Hi!
      If several dates are written in one cell, then this is text, not dates. You cannot change their format using formatting.

  41. Hi, I've got exported data into excel and unfortunately they have the date in this text format "May 17, 2022" in the D column, and while I've been through the comments I can't find anything that converts this into a date. What would you recommend?

    Thanks

      1. Thank you for replying. Unfortunately this returns a #VALUE

        1. Hi!
          Perhaps the problem is in the regional settings of your Windows. Try this formula

          =DATE(RIGHT(D1,4),VLOOKUP(LEFT(D1,3), {"JAN",1;"FEB",2;"MAR",3;"APR",4;"May",5;"JUN",6;"JUL",7;"AUG",8;"Sep",9;"OCT",10;"NOV",11;"DEC",12},2,0),MID(D1,5,2))

          You can also analyze more than 500 combinations representing dates in text format and convert them to regular Excel dates using Convert Text to Date tool. 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.

  42. Hi there,

    I have hundreds of dates in a column. In this column, some dates are dd/mm/yyyy and some are mm/dd/yyyy. I am from New Zealand and require the dd/mm/yyyy format. I have tried to change the format settings of the entire column to do this.

    At first, some rows were set as Armenian, and some set as English. After setting them all to English, the problem is still happening. I tried to read through most of your advice and comment replies but I got a wee bit confused and thought it best to just ask!

    1. Hello!
      Some of your dates are written as text. This text should be converted to a date. Set the cells to the desired date format and use the formula:

      =IF(ISTEXT(A1),DATE(RIGHT(A1,4),LEFT(A1,SEARCH("/",A1)-1),MID(A1,SEARCH("/",A1)+1,SEARCH("/",A1,4)-SEARCH("/",A1)-1)),A1)

      I recommend reading this guide: How to convert text to date in Excel

  43. Difference between two dates with time to collect time difference between two dates for example Wed Apr 20 17:56:16 IST 2022 & Wed Apr 20 17:53:43 IST 2022 Please give answer with formula not manually because I have 30000 entries for work. Please help if any

  44. Excel stopped recognizing the Spanish date formats, it was working from January til March then it just stopped working during April.

    Example:
    Using VLOOKUP and 01 abr. as a reference, it doesn't count "01 abr" from the raw data.

    This worked from Jan to Mar using the same "everything". I just changed the month.

  45. I want to input 20032022 then excel will convert it to 20-Mar-2022. what is the custom format for that?

  46. Monday, February 21, 2022
    CONVERT IN 02-21-2022
    FORMULA USING TEXT(RIGHT(N1044,LEN(N1044)-FIND(",",N1044)-1),"mm-dd-yyyy")
    BUT AFTER RESULT February 21, 2022
    I NEED CONVERT IN 02-21-2022

  47. I have date in format Feb-21, Mar-21 & so on till Jan-22. While converting this to year I am not able to do that, I am using formula Year it shows me a result 2022 for 2021 as well. Also, I am not able to convert it to date. Please help.

    1. Hello!
      Look closely at what date format is set in the cell. To do this, press CTRL+1. I think your date format is "mmm-dd".
      Feb-21 means 21 February 2022.

  48. Hi, I use mmmm or dddd and I get always fmonth or day names in small letters, but I would like that first letter is big just like Thursday but i get thursday. I use estonian language and may bet that is reason why all letters.

    1. Hello!
      Pay attention to what custom date format is set in this cell. If there is something like
      [$-F419]dddd, d mmmm yyyy
      then delete the regional settings [$-F419].
      I hope it’ll be helpful. If something is still unclear, please feel free to ask.

      1. Hello! and thank you for your replay but my problem are that all months and days of the week are in lower case (small letter). I put 1.04.2022 and Format Cells>NUmber>Custom I put mmmm because I would like to see only month or some other place weekday and result always I get april or monday not what i want April or Monday . I would like to see that first letter is big /upper. If I use formula =upper(a1) then all letters will be APRIL but I want that first letter is only upper

        1. That formula and 1.04.2022 will be Aprill

          =UPPER(LEFT(TEXT(A1;"mmmm");1))&""&LOWER(RIGHT(TEXT(A1;"mmmm");LEN(TEXT(A1;"mmmm"))-1))

          but is there a simpler method

  49. Hello, I need to change a bunch of dates formatted like this: 2021-10-02, 1:47:40 PST
    to 10/02/2021. What formula can I use? Thanks.

  50. So i have a question if my date format reads as 01/02/2022 = Jan 2,2022 which is wrong because the month should be February is the a formular to correct such ?

Post a comment



Thanks for your comment! Please note that all comments are pre-moderated, and off-topic ones may be deleted.
For faster help, please keep your question clear and concise. While we can't guarantee a reply to every question, we'll do our best to respond :)