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 11. Total comments: 940

  1. Hi,

    I have date in this format September 9, 2019 in one of the excel columns. I want to change it to 9/09/2019.. I tried to apply the format from the formats provided in excel, but it did not work. Any help will be highly appreciated.

  2. How to change below mentioned date in excel with DD/MM/YYYY?

    2019-02-02 13:45:20

    Pls help Urgently

    1. Hello!
      If I understand your task correctly, the following formula should work for you:

      =DATE(LEFT(D1,4),MID(D1,6,2),MID(D1,9,2))

      I don't know which date formal you are using. Therefore, you may find it useful to know how to convert text to date.

  3. I have a report with date, text & time with timezone in a cell and the requirement is to sort this in ascending order. I have tried to use delimiter, concatenate and also convert text to date but the "at" in between date & time is giving me issues and i am having a tough time sorting it. Can you please help

    Example:
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time
    Sunday, April 19, 2020 at 10:18:36 PM China Standard Time
    Saturday, April 18, 2020 at 3:23:36 AM China Standard Time
    Friday, April 10, 2020 at 1:23:36 AM China Standard Time
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time
    Sunday, April 19, 2020 at 10:18:36 PM China Standard Time
    Saturday, April 18, 2020 at 3:23:36 AM China Standard Time
    Friday, April 10, 2020 at 1:23:36 AM China Standard Time
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time
    Sunday, April 19, 2020 at 10:18:36 PM China Standard Time
    Saturday, April 18, 2020 at 3:23:36 AM China Standard Time
    Friday, April 10, 2020 at 1:23:36 AM China Standard Time
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time

    1. Hello!
      I’m sorry but your task is not entirely clear to me. How do you want to sort the column? Do you have text written in the cells? If you need to sort by date and time, you need to extract them from the text into another column. And sort by this column.

  4. Formula for following required :
    Todays date is September 01, 2020.
    Part A
    A tool is calibrated on Jan 01, 2020.
    It has a 6 month calibration cycle so it is overdue by 3 months
    How to show actual calibration due date and -3 month overdue date in 2 separate cells.
    Part B
    As above, but tool has calibration cycle of 24 months, therefore has 18 months remaining till due.

    I think one formula would work for both scenarios.

    Example :
    Cell A Cell B Cell C Cell D
    Calibration done cycle (m) Due Status
    Jan 01 2020 6 July 01 2020 -3
    Jan 01 2020 24 Jan 01 2022 18

    Thank You in advance for any help.

  5. Hi My worksheet is split into 12 equal sections representing the 12 months of the year.
    I started gathering data in July and I’m trying to work out how to automatically have the word August in the second section and September in the 3rd section etc. without having to type it in manually.
    Thanks

    1. Hello!
      I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Give an example of the source data and the expected result.
      It’ll help me understand it better and find a solution for you

  6. Hello

    I have this format on cell A1: Sep 22, 2020 03:09:09 AM
    What formula do i need to us to change it to: 09/22/2020 and remove the time in cell A2

    thank you in advance

    1. Hello!
      If I understand your task correctly, the following formula should work for you:

      =DATE(MID(A1,FIND("~",SUBSTITUTE(A1," ","~",2),1)+1,4), VLOOKUP(LEFT(A1,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(A1,FIND(" ",A1,1)+1,2))

      I hope it’ll be helpful.

      1. That's brilliant thank you! Saved me hours of work.

  7. I do not know what I am doing wrong. I have imported dates into Excel as text values, however, using neither Excel's DATEVALUE function nor Text to Columns feature seems to work.

    In my spreadsheet, the dates are in column F and have the format "m/d/yyyy h:mm:ss AM/PM"

    For example, cell F2 contains the following text: ‎9‎/‎30‎/‎2020 ‎12‎:‎00‎:‎00‎ ‎AM

    I am able to use TRIM(LEFT(F2,FIND(" ",F2)-1)) to retrieve the date portion of the text, but when I attempt to use DATEVALUE(TRIM(LEFT(F2,FIND(" ",F2)-1))) to convert the text value to a date value, I receive a #VALUE! error.

    Please help.

    1. Hello!
      Your formula is written correctly and should work. If you imported dates from another program, there may be various non-printable characters in the text. To check this, try manually entering the same information into the cell 9/30/2020 12:00:00 AM
      You can also try using this formula

      =DATE(--MID(F2,FIND("~",SUBSTITUTE(F2,"/","~",2),1)+1, FIND(" ",F2,1)-FIND("~",SUBSTITUTE(F2,"/","~",2),1)-1), --LEFT(F2, SEARCH("/",F2,1)-1), --MID(F2,FIND("~",SUBSTITUTE(F2,"/","~",1),1)+1, FIND("~",SUBSTITUTE(F2,"/","~",2),1)-FIND("~",SUBSTITUTE(F2,"/","~",1),1)-1))

      I hope it’ll be helpful.

  8. If I enter a date as 12/19/1922, my date columns are formatted to display, 19 Dec 1922. If I enter a date prior to 1900, however, the formatting will not change.
    Also, I need to calculate the age of a person and I use =datedif(xx,xx,"y"). But, again,. the calculation won't work for any date prior to 1900.
    Is there a fix for both the formatting issue and the calculation?
    Thanks in advance for your help.

    1. Hello!
      Excel does not work with dates before 1900. These dates are recorded as text. Therefore, it is not possible to apply the date format to them.
      To find the difference between dates before 1900, it is recommended to add 2000 years to each of them.
      You can use something like this:

      =DATEDIF(DATEVALUE(LEFT(A1,6)&(RIGHT(A1,4)+2000)),DATEVALUE(LEFT(A2,6)&(RIGHT(A2,4)+2000)),"y")

      If there is anything else I can help you with, please let me know.

  9. hello
    i want name and dob like devika 10/4/1996 but instead of date some numbers are appearing

    1. Hello!
      I’m sorry but your task is not entirely clear to me. Could you please describe it in more detail? What result do you want to get? Thank you!

  10. Sir, How to type date to date format (eg:2001.jan.1 to 2001.dec.31) in cell.

  11. HI everyone,
    I need help to convert my report dates showing as Thursday, April 4, 2019 5:46 PM to 04/04/2019. Need to simplify the data.
    Thanks in advance

  12. Hi,
    I need the following date format for some food products, in Canada

    Format for the Date is as follows: 08 JA 20
    January: JA
    February: FE
    March: MR
    April: AL
    May: MA
    June: JN
    July: JL
    August: AU
    September: SE
    October: OC
    November: NO
    December: DE

  13. I'd like to be able to add a comma in a time format...
    EXAMPLE: to hhave 1234:56 display as 1,234:56
    I haven't been able to find a solution in all of my searching. Certainly this is a possibility when working with thousands of hours -- like projects and company-based time cards.

    1. Hello Bill!
      Unfortunately, you cannot use time separators. You can convert the time to text and then insert any required separators.

  14. Hello.
    I have a question:
    25:04:01 it is my data that's format hh:mm:ss.
    I tried it to transport "hh" format. I used =Text(B2,"mm") but formula is not working that shows as like Month. How to transport this data to "hh" format that looks like 5,6hr etc.

  15. Hi,
    I am suffering from an issue in Excel. Hope somebody will help me to resolve.
    Every time when I type a date in excel, it always returns the date in dd-mmm format and not in dd-mmm-yy format. Say for ex - If want to type a date 1-Jan-2020, then when I type 1/1 it only returns 01-Jan and not 01-Jan-2020.
    Can somebody help.
    Thanks in advance.

  16. SIR,I HAD A PROBLEM IF I ENTER A DATE IN DATE COLUMN (170720)IS COVERTING TO THIS DATE(08-11-2668)SO WHAT FORMULA I WANT TO USE?AND I WANT A COLUMN IN WHICH I MANUALLY ENTER ONLY NUMBERS AND EXCEL SHOULD AUTOMATICALLY CONVERT TO DATE FORMAT, FOR EG. IF I TYPE 17072020 SHOULD BE CONVERTED TO 17/07/2020. THANK U

    1. Hello!
      Excel has date entry rules that you can read about here. You do not enter a date, but a number that indicates the day number starting in 1900. "IF I TYPE 17072020 SHOULD BE CONVERTED TO 17/07/2020" - this is only possible when using the VBA macro.

  17. Hi Alexander, thanks for your quick reply but I don't see "Data - Sort - by Data. Then I selected the "Sort anything that looks a number, as number" checkbox." If I use the ribbon Data menu or the main top Data menu all I get on my Excel 2019 for Mac is:
    Pls see photos 1 to 3:
    https://www.dropbox.com/s/wnntscvzgqhdi54/1.png
    https://www.dropbox.com/s/m4mtma8yhx7owsw/2.png
    https://www.dropbox.com/s/733br30qo99ti0u/3.png
    Are you on a different version?
    Cheers,

  18. Hi can someone pls help me with an non responsive date change / sort order issue before I throw my computer out the window?

    I've spent over half an hour trying to sort this excel file (link below) into the correct date order. Its back to front and has all the latest dates at the top of the file instead of the bottom. Why is it back to front with the newest yahoo finance data at the top when I web query Yahoo?

    Why does excel not recognise that I am changing the date format to DMY so I can put it in the correct order with oldest dates at the top???

    Column A dates are ompletely unresponsive no matter how many specialist help resources I watch. What am I missing??

    Thanks in advance.

      1. Hi Alexander, thanks, but I don't see my response to your help? My reply had 3x dropbox images showing that I don't have the menu with:
        "Data - Sort - by Data. Then I selected the "Sort anything that looks a number, as number" checkbox."
        I can't see my previous reply with those 3x dropbox images?

  19. Hi ...I want to display date in excel as 12/31/9999 00:00:00.000000, I tried to use custom format (mm/dd/yyyy hh:mm:ss.sssssss) but the result I am getting is 12/31/9999 00:00:00.00. Please help here.

  20. I want my dates to display in yyyymmdd format. I created it in custom but for 20200709 it returns with a value overflow (###### etc.) Is the format I want possible?

    1. Hello!
      You entered 20200709 in your cell. This is not a date, but a number. Enter the date correctly. How to enter the date in the cell - read here

      1. Thank you for the answer Mr. Trifuntov.
        Alright, than I asked the wrong question.
        I want to enter my dates according to this format: yyyymmdd (so, 20200709), without the usual slashes or hyphens (2020/07/09 or 2020-07-09) because it is easier.
        Is there a way to make excel interpret 20200709 as a date or is there a way to add an entry-format in Excel?

        1. Hello!
          You can enter a date in a cell without slashes and hyphens using the VBA macro. Or you can enter a number in another cell and then convert it in the cell you need to a date using Excel functions. You can read more about converting numbers to dates here.

          1. Thanks!
            This is exactly what I need. So simple, I should have been able to figure this out for myself!
            Sorry to have bothered you. :-)

  21. I want to covert 1421020800000 value in date please help me

  22. Dear sir
    here i got data like 07-05-20 1:58 is 5th july 2020 and next colum
    6/28/2020 8:25:27 PM june 28 2020 how to change by order..

    1. Hello!
      I’m sorry but your task is not entirely clear to me. Could you please describe it in more detail? Thank you!

  23. Hello Sir,
    I have a whole sheet of Excel Data. In that, there a couple of columns where the dates are shown in the format, for eg (10 Dec 1990). I want to change that to the format as 10-12-1990. I tried Format cells and it worked on 1 cell.
    Is it possible to apply it to the entire column at once?? Apply that formula to the entire column of the worksheet?? It might take me ages to change the date format in each and every cell.

    1. Hello Neha!
      Click on the column heading (letter). The entire column will be highlighted. After that, set the desired custom format in the same way as the format of one cell.

  24. Hello Team,
    Kudos on writing such a detailed and descriptive tutorial on this topic. It was really helpful.
    My question is regarding the topic "Creating a custom date format in Excel"
    I am able to create a custom format however it only remains in the Excel file I was working on.
    Is it possible to save that custom format so that its available as an option in any Excel file I work on? I just need this as an additional option and don't want to change the default date formats.
    Thanks.

    1. Hello Rajiv!
      You can save the workbook with your custom format as an Excel template. Then, based on this template, you will be able to create new files. Read about Excel templates in this guide.

  25. Hi!
    I want to change USA date format to UK date format in Excel. How can I do it? Please let me know it as soon as possible.
    Thanks.

  26. Hello, I'm looking for a rather unique situation with dates in excel and uploading the spreadsheet to a e-commerce website with valid information.

    I currently have a heap of information in a .xlsx file and all works well except for date formatting. I have =NOW() which returns today's date in 25/06/2020. But when I copy the page and paste the values into a .csv file for upload it converts it to 44007.7716459491.

    The other issue is the site will not accept 25/06/2020 as a valid date format but it will accept 25.06.2020.

    Is there an easy formula to produce 25.06.2020 as an auto date, then also create another auto date +30 days in the same 25.07.2020 format?

    Or will I have to create different cells generating the date(A1), month(A2) and year(A3) and then combine them in the cell like =A1&"."&B1&"."&C1 ?

  27. HI,
    I need to change the date time 6/18/2020 10:09:53 AM format to "Jun-20"
    I tried using format cells option but its not working.
    pls advise
    Thanks.

    1. Hello!
      It is not possible to change the date format so that it appears in the cell instead of June 18 June 20. For this, formulas are used. But to display “Jun-18” instead of “6/18/2020 10:09:53 AM”, use the custom date format “mmm-dd”

  28. I'm on the fence about this, while more customization is good, I have a feeling this is a "in-progress" update, it just feels incomplete and half-way there.
    We use badge layout for apps on design approvals (visual projects), so the image being displayed is important. Old layout "feels like" it had larger images,
    maybe because the images were cropped more loosely so it's easier to tell which project it was at quick glance. Now the image is cropped closer, making it
    harder to scan thru at quick glance. I find myself needing to click into the project more often than usual. Which makes the whole user experience less
    efficient.
    I have a couple suggestions that might make it work better:
    1. Increase the height of the window the cover image is being displayed.
    2. Let us to choose which image to be displayed as "cover" (like how Pinterest handles cover images of each board, was hoping for this for a long time)
    3. Let us adjust which part of the image to show and how tight or loose the crop is (with a fixed window, let us move the image around and maybe enlarge or
    shrink it to control what shows thru the window. Pinterest does a limited form of this, which is very useful in making the cover image relevant)
    4. Allow Cover Image to be ordered in different hierarchy (currently every element can be ordered differently except the Cover Image, it seems to be stuck
    in the 2nd spot, would like the option to set it on another spot in the layout. This one seems like an easy fix, since you guys allow that for every other
    element already)

  29. I need to calculate negative days for calculating dates. When I use this formula =DATEDIF(A1, TODAY(), "d") and A1 is 6/22/2020 but TODAY is 6/19/2020 the calculation cell shows #NUM! but I need it to show -3. Can't figure out the formula. Any help would be great.

    1. Hello Stan!
      You do not need to change the date format. You need to add the condition to the formula.
      If I understand your task correctly, the following formula should work for you:

      =IF(A1>TODAY(),-DATEDIF(TODAY(),A1,"d"),DATEDIF(A1, TODAY(),"d"))

      I hope my advice will help you solve your task.

  30. Hi, I have two different time with 12 hours format in two cells. The second cell required to covert for 24 hours format and the time difference between the two cell has to written in third cell.

    1. Hello!
      I did not understand what your problem is. To find the time difference between cells, the time format does not matter. The time format affects the appearance of the cell, not its value. Write an example of the source data and the result you want to get.

  31. Hello sir,
    I want to convert 2013.583 to date. Please help me

  32. Sir, I want date separator "-" not "/" I have done almost everything but I am not getting desired results. My date format is dd-mm-yyyy whereas it is showing dd/mm/yyyy. Please help.

    1. Hello Kataria!
      As a date separator symbol, Excel uses the symbol that is specified in Control Panel -> Clock and region -> Region -> Formats -> Additional Settings -> Date and Time formats.

      Or use a custom format:
      Please go to Format Cells, choose Number -> Custom Format and set
      dd-mm-yyyy

    2. Sorry forget to mention I can not insert any formula please.

  33. Hello, can I set the date as below
    01-Mar-Y1
    Y1 indicates 2021.

    Is it possible ?

    1. Hello Aida!
      This date format is not possible. However, you can convert the date to text.
      In this case, you can apply a custom date format. Use the formula

      =TEXT(G1,"dd-mmm-")&"Y"&RIGHT(G1,1)

      I hope my advice will help you solve your task.

  34. Hi
    I have a date issue where by in a cell with text & long date & need to convert into short date by MONTH/DAY/YEAR? This is a two formula process. BELOW IS THE TWO FORMULA'S
    1 = Randwick Saturday, 06 June 2020 =MID(Z6,MIN(IFERROR(MIN(FIND({0,1,2,3,4,5,6,7,8,9},Z6&"0123456789",1)),LEN(Z6)+1)),LOOKUP(1,0*MID(Z6,ROW(INDIRECT("1:"&LEN(Z6))),1),ROW(INDIRECT("1:"&LEN(Z6))))+1)

    Returns = 06 June 2020

    2 =DATE(RIGHT(Z1,4),RIGHT(LEFT(Z1,2),2),LEFT(Z1,2))
    now converting to MONTH/DAY/YEAR
    = 6/06/1920

    This returns wrong year!
    Any help would be greatly appreciated

    Regards

    Tony

    1. I assume that after the phrase Randwick Saturday, 06 June 2020, you still have a space. As a result, the text 06 June 2020 also has a space, that is, “06 June 2020”.

      I recommend checking this or using a formula with the TRIM function:

      =TRIM(MID(Z6,MIN(IFERROR(MIN( FIND({0,1,2,3,4,5,6,7,8,9},Z6&"0123456789",1)), LEN(Z6)+1)), LOOKUP(1,0*MID(Z6,ROW(INDIRECT("1:"&LEN(Z6))),1), ROW(INDIRECT("1:"&LEN(Z6))))+1))

      Now the date format function will work correctly.

      1. Hi Alexander
        Sorry I got cut off, but to finish.
        There is a space between all texts & date plus at the end of years as well.
        In the formula there has space in where FIND, LEN & LOOKUP is, so cancel space ,but still didn't work. Tried { } as well.

        Regards

        Tony

        1. Hello!
          I used your formulas and copied the text from your message. As I understand it, the first formula is written in cell Z1.

          =TRIM(MID(Z6, MIN(IFERROR(MIN(FIND({0,1,2,3,4,5,6,7,8,9},Z6&"0123456789",1)), LEN(Z6)+1)), LOOKUP(1,0*MID(Z6,ROW(INDIRECT("1:"&LEN(Z6))),1), ROW(INDIRECT("1:"&LEN(Z6))))+1))

          My second formula works when the formula is written in Z1

          I noticed that your second formula incorrectly determines the month. Use this formula

          =DATEVALUE(LEFT(Z1,2)&"-"&MID(Z1,4,3)&"-"&RIGHT(Z1,4))

          1. Hi Alexander
            Sorry again, but how do you put month first?
            Month / Day / Year

            Regards

            Tony

            1. Yello again!
              The date display format depends on the regional settings of your Windows and the date format in Excel. Read above in this article about custom date formats.

          2. Hi Alexander
            Works like a dream, thank you.
            One question with the date formula, how does it read the month without the 0 for the 6 month?

            Regards

            Tony

            1. Hello Tony!
              The function reads the first three letters in the name of the month. She receives the text "06-Jun-2020", which is converted to a date using the DATEVALUE function.

      2. Hi Alexander
        I tried the formula but still didn't get the date 6-06-2020.

  35. Hello!
    I am trying to sort my information by year. I already tried the custom format option provided above and it has been applied to all the fields. However, when I go the filter and try to sort the info by year, it will only work on half of the column. It seems as if some of the fields didn't recognize the custom format even though I already made sure that it was applied to all the data. Is there anything I can do?

    1. Hello Karina!
      I can assume that in some cells of your table the date is written as text. Typically, the text in such cells is left-justified, and the real date is right-justified. Check cells that you cannot sort correctly. Read how to convert text to date in this article. I hope my advice will help you solve your task.

  36. Does anyone find it very odd that an extremely common date format like 01-Jan-2020 isn't available unless you add it as a custom dd-mmm-yyyy ?

  37. I would like to change the dates of a whole spreadsheet by only changing the first date, is that possible and can someone help me with the formula please? I would like to change 01.06.2020 and would like the rest of the dates to add 1 more day so I do not have to type the dates everytime I use it for the following month.

    1. Hello!
      If I understand your task correctly, the first date in cell A1. In cell A2 have the formula

      =A1+1

      After that you can copy this formula down along the column.

  38. HAI
    I HAD A PROBLEM IN EXCEL THAT I HAVE TO SUBMIT A REPORT TO OFFICE.
    if I ENTER STARTING TIME AND TOTAL TRIPS DONE IN A DAY ( 5.30AM AND TRIPS DONE 5) SO, HOW TO CALCULATE THE ENDING TIME.
    (Sl.No DATE STARTING TIME END TIME TOTAL TRIPS WARD NO. / AREA FUEL IN TANK FUEL SUPPLIED FUEL CONSUMED BALANCE IN TANK
    1 01-May 5.30 AM 2.30 PM 6 0 50 18 32
    2 02-May 6.30 AM 5.00 PM 0 32 0 32
    3 03-May 5.00 AM 12.30 PM 0 32 0 32
    4 04-May 5.30 AM 1.00 PM 0 32 0 32 )

    IF I CHANGE TRIPS THEN THE ENDING TIME SHOULD BE CHANGE. CAN I GET SOME FORMULA TO DO MY WORK FAST

    1. Hello!
      Please describe your problem in more detail. What exactly do you change on a trip? What determines the end time of a trip? How do you want to calculate it? Write an example of the source data and the result you want to get. It’ll help me understand it better and find a solution for you. Thank you.

  39. Is there a 'switch' for date formats to force uppercase text?
    I am trying to display 'April 2020' (mmmm yyyy) as 'APRIL 2020' without the use of =upper() function as the date needs to be displayed this way in the same cell as it is entered.
    Thanks

    1. Hello Dave!
      You can capitalize the first letter of the month using the "MMMM yyyy" format. You can write the name of the month in capital letters without using formulas using VBA only.

  40. Hi how can I change a field value from "Aug 10 1984 12:00AM" to
    "1984/08/10"(yyyy/mm/dd)
    Normal format "date" is not working

    1. Hello Mel!
      Your value "Aug 10 1984 12:00AM" is the text. Therefore, turning it into a date can only be done using a formula.

      =DATEVALUE(SUBSTITUTE(MID(T1,5,3)&REPLACE(LEFT(T1,11),5,3,"")," ","/")) + TIMEVALUE(RIGHT(SUBSTITUTE(T1,"AM"," AM"),8))

      Please go to Format Cells, choose Number -> Custom Format and set desired format

  41. Hi
    I am adding 10.8 days to a date, and it is returning as 1/18/2020 4:55:54 AM and I cannot use vlookup again this returned date. How do I format the return date to only date? So I can use as only date format for other formulas. Thank you.

    1. Hello Avarma!
      I’m sorry but your task is not entirely clear to me.
      For me to be able to help you better, please describe your task in more detail. Please let me know in more detail what you were trying to find, what formula you used and what problem or error occurred. It’ll help me understand it better and find a solution for you. Thank you.

  42. Hellow Ablebits Team,
    Have Changed the US date format(mm-dd-yy) to English (U K) (dd-mm-yy).Existing dates have changed successfully But with new entries in dd-mm-yy it does work, however it is OK with
    mm-dd-yy entries. What to do to have both entries & display in dd-mm-yy UK format.
    Best Regards
    Abdul Aziz Khan

  43. Hi,
    I am wondering if I have information in mm dd hh:mm:ss yyyy, is it possible to transfer it to yyyy/mm/dd hh:mm:ss.
    Anne

    1. Hello!
      Please go to Format Cells, choose Number -> Custom Format and set
      yyyy/mm/dd hh:mm:ss

      I hope this will help, otherwise please do not hesitate to contact me anytime.

      1. Hi Alexander,
        I have the same issue as Anne, and change the format using the custom format option.

        However, I was wondering if there was any way to make the change as permanent, as every time I open an excel file, I have to change it, and this happens several times a day, so it gets a bit frustrating at times.

        Thanks in advance for your help

        1. Hello Tabish!
          When you enter a date or time in a cell, it displays in the default date and time format. This default format is based on the regional date and time settings specified in the Windows Control Panel and changes when you configure these settings in the Control Panel. Set the format there. I hope it’ll be helpful.

  44. Hi,
    This appears to be a great source of information.
    I have a date with a time as :
    05/12/2020 23:59
    My excel sheet is interpreting as 5 December 2020 23:59 however it is meant to be 12 may 2020 23:59. It is data that is downloaded and both time and date come a single entry in the table I download. is there any way to convert it to be correct. I have now been trying for over 5 hours!!
    help is needed please.
    Best regards,

    David

    1. Hello David!
      Check what date format you have installed on Windows. Go to Control Panel – Time – Region Settings – Change data formats
      I hope this will help, otherwise please do not hesitate to contact me anytime.

      1. Hi,
        Thank you for getting back to me. The problem is that the the website generating the data gas a glitch and is presenting the day and month in reverse. So if it was the 13 May 2020, the cell contains 5/13/2020 but yet the excel sheet thinks it is the 5 of the 13th month which obviously causes problems. They are working ona fix to the site now but i would like to know if there is anything i could do to convert it in the meantime in case they cannot fix the issue.
        Hope to hear from you soon,
        David

        1. Hello David!
          Please try the following formula:

          =DATEVALUE(REPLACE(REPLACE(G1,1,2,MID(G1,4,2)),4,2, LEFT(G1,2))) + TIMEVALUE(REPLACE( REPLACE(G1,1,2,MID(G1,4,2)),4,2,LEFT(G1,2)))

          Please go to Format Cells, choose Number -> Custom Format and set
          dd mmmm yyyy hh:mm:ss
          I hope this will help, otherwise please do not hesitate to contact me anytime.

  45. hi
    i have problem in my excel sheet in date column. I have calendar period column in which date shows like 201810 in which last 2 digits are month and 1st 4 are year. i want to convert in date format like 10-2018. how to do this please help me with this.
    Thank You

    1. Hello Aman!
      Please try the following formula:

      =DATE(LEFT(A13,4),MID(A13,5,2),1)

      Please go to Format Cells, choose Number -> Custom Format and set
      mm-yyyy
      Or instead of the date in the cell, you can write text and not use custom format:

      =TEXT(DATE(LEFT(A13,4),MID(A13,5,2),1),"mm-yyyy")

      I hope it’ll be helpful.

  46. Great info, thx! I have the same question about capitals

  47. Hello Sir.
    How can we format the date using capital letter in excel for example 31 MAY 2020 instead of 31 May 2020?

    1. Hello Willy!
      The date format in Excel does not use capitalization. But you can use the formula

      = UPPER(TEXT(A1,"dd mmmm yyyy"))

      I hope it’ll be helpful.

      1. Hi Sir, your formula really helpful!!.. Thanks

  48. I need Year-Month-Date how to Possible?

    1. Hello Rabiul!
      I hope you have studied the recommendations in the above tutorial. Please let me know in more detail what you were trying to find, what format you used and what problem or error occurred. In that case I will try to help you.

      1. Dear Sir,
        In navigation problems we have situation where we have to find the duration between 2 times, e.g 23:00 and 01:25 then unable to do it

        1. Hello Capt.T.I.Paul!
          If I understand your task correctly, the following formula should work for you:

          =IF(A1 > A2,A2-A1+1,A2-A1)

          where A1 is 23:00 and A2 - 01:25
          I hope this will help, otherwise please do not hesitate to contact me anytime.

  49. Hi, I have entered in excel date as 3/01/2020 but it is displaying as 01/03/2020 i have tried date formats still it is not coming but, I need this date as United States format mm/dd/yyyy how can I change this help me.

    1. Hello Akhila!
      Please go to Format Cells, choose Number -> Custom Format and set
      mm/dd/yyyy;@
      I hope this will help, otherwise please do not hesitate to contact me anytime.

      1. This is not change have tried kindly help with some other way

  50. How to change 9/1/2019 format to Sep-19 in excel???

    1. Hello!
      Please go to Format Cells, choose Number -> Custom Format and set
      mmm-yy;@
      I hope this will help, otherwise please do not hesitate to contact me anytime.

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 :)