Share via

Can't format dates in Excel

Gene Hudson 70 Reputation points
2026-06-15T19:26:26.0733333+00:00

Data from MS Forms viewed in Excel; some dates are displayed at dd/mm/yy hh:mm. Want them in mm/dd/yy format, but no number of attempts to reformat have any effect.

User's image

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments

4 answers

Sort by: Most helpful
  1. Ashish Mathur 101.9K Reputation points Volunteer Moderator
    2026-06-15T23:13:33.7966667+00:00

    Hi,

    Try using a simple prompt in co-pilot to solve the problem. A prompt such as "Convert the entries in column A to proper date/time stamps. Get the result in column B. In the result column, ensure that the format is dd/mm/yyyy hh:mm"

    This can also be solved using the following Python command.

    1. =py and tab
    2. =pd.to_datetime(xl("A2"))
    3. Ctrl+Enter

    I have not been able to test my Python solution due to some connectivity issues.

    Hope this helps.

    Was this answer helpful?

    0 comments No comments

  2. John Jefferson Doyon 73,395 Reputation points Independent Advisor
    2026-06-15T20:04:01.15+00:00

    Hi, I'm John! I will help you with this.

    If the data was imported from Microsoft Forms, the dates might be stored as text, and changing the cell format will not affect text values.

    Could you check a couple of things?

    1. When you click one of the date cells, is the value aligned to the left or the right side of the cell?
    2. If you select a date cell and change the format to General, does it remain as something like 10/06/26 16:39 or does it change to a number?
    3. Also, which regional format is set in Windows? For example, is your region set to UK (dd/mm/yyyy) or US (mm/dd/yyyy)?

    From the screenshot, the dates appear to be in dd/mm/yy hh:mm format, so Excel may be interpreting them according to your regional settings rather than as editable date values.

    Let me know the answers to the questions above and I can suggest the next step.

    Was this answer helpful?

    0 comments No comments

  3. Kai-L 14,395 Reputation points Microsoft External Staff Moderator
    2026-06-15T20:02:32.9133333+00:00

    Dear @Gene Hudson,

    Good day, and thank you for reaching out to the Q&A Forum.

    I understand that the date values from Microsoft Forms are showing in Excel as dd/mm/yy hh:mm, and that changing the date format to mm/dd/yy does not seem to have any effect. I’m sorry for the inconvenience this has caused. As a forum moderator, I am not able to access your account or review the backend systems directly to diagnose and resolve this for you. My role here is limited to providing general guidance and suggestions that users can try on their side.

    To better understand the issue, could you please share a little more information?

    • How did you try to reformat the dates? For example, did you use Format Cells > Date, a custom format, or another method?
    • Are you viewing the live Microsoft Forms response workbook, or did you export/download the responses to Excel?
    • When you select one of the affected cells, what appears in the formula bar?
    • If you change one of the affected cells to General, does it turn into a number, or does it displayed as text/date?
    • Are all date values affected, or only some of them?

    Please share what you have already tried and, if possible, provide one or two sample values exactly as they appear in the cell and in the formula bar. If you share another screenshot, please make sure to hide any personal or sensitive information. Thank you for your patience and understanding. I look forward to your reply.


    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?


  4. AI answer

    2026-06-15T19:26:41.5466667+00:00

    The dates from Microsoft Forms are likely stored as text, not real Excel date values. Changing the cell format alone cannot change the display if the underlying value is text.

    Convert the text to real dates, then apply the desired format:

    1. Insert a new helper column next to the Forms date column.
    2. Assume the original value (for example 10/06/26 16:39) is in A2.
    3. In the helper column row, enter a formula that converts the text to a date/time value, for example:
         =DATEVALUE(LEFT(A2,8)) + TIMEVALUE(MID(A2,10,5))
      
      or use a parsing formula appropriate to the exact text pattern.
    4. Fill the formula down for all rows.
    5. Select the helper column, press Ctrl+1 to open Format Cells.
    6. On the Number tab choose Date, or Custom and enter mm/dd/yy hh:mm (or mm/dd/yy if time is not needed) in Type.
    7. Once the helper column shows the dates correctly, copy it and use Paste Special → Values over the original column if needed.

    If Excel is auto-formatting new entries incorrectly, first set the column to Text (Ctrl+1 → Number tab → Text) before importing or pasting, then use formulas or Text to Columns to convert into the required mm/dd/yy structure.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.