Solved%3a Date Format Issue Excel

  1. Solved%3a Date Format Issue Excellence
  2. Solved%3a Date Format Issue Excel 2016

How to change date format in Excel. In Microsoft Excel, dates can be displayed in a variety of ways. When it comes to changing date format of a given cell or range of cells, the easiest way is to open the Format Cells dialog and choose one of the predefined formats.

  1. Choose the dates in which you are getting the Excel not recognizing date format issue. From your keyboard press CTRL+H This will open the find and replace dialog box on your screen. Now in the ‘Find what’ field put a decimal, and in the ‘replace’ field put a forward slash. Tap the ‘Replace All’ option.
  2. All dates are in fact numbers in Excel, just displayed with formatting that makes them appear as dates to humans. Try to change the Number Format for a date in Excel. For example, you will find that 2 January 2004 is actually the number 37,988.

Microsoft Excel is one of the best software for organizing data in tabular form; Excel is widely used across the world because of its simple yet powerful features. However, there is a little learning curve to Excel, which many people find it as a hurdle.

Date format is one of thing that most users find it hard to change from the default option. Different countries use different date formats, so many users will want to change the date format in MS Excel. There is no direct option to change date format in the main menu, so basic users face problems while using different date formats.

To make your work more comfortable, we have found out two simple methods to change the date format in your document. The first method changes MS Excel settings to enable different date formats for you, and the second method changes your default date format on your computer, so you don’t have to change the settings every time you make a document. It would also change the default date format in all of your programs. Choose whichever suits you best.


Method 1 – Data setting in Excel

Solved%3a Date Format Issue Excellence

Solved%3a date format issue excellent

STEP 1: Click on the Data tab in the main menu and then click on Text to columns option.

STEP 2: A pop-up menu will open up, Check the Delimited radio button in ‘Orginal data type’ and then click Nexttwice to go step 3 of the wizard.

STEP 3: On 3rd step, First check the date option in column date format and then select MDY from the drop-down list. Click Finish after selecting the date format.

STEP 4: Select any empty cell inside your document and press Ctrl + 1, a format cells menu will pop up.

STEP 5: Select Custom from the categories menu on the left pane and then click on the type option. Type down the date format as yyyy-mm-dd (Type whatever format you want or choose by scrolling down).

STEP6: Click Ok apply the date format. Check the date format by typing the date in any of the cells.

Method 2 – Changing default Windows Date format

If you are looking for a permanent solution for the date format in Excel and also all your other apps, changing the default date format will be the best option for you. It will automatically change your date formats in all the apps, and you won’t have to worry about that again. Follow this simple process to change your default date format in your windows machine.

STEP 1: Press Windows + R, it will open the Run box.

STEP 2: Type in control international in the box and hit enter.

STEP 3: It will open up the Region settings menu, choose the desired date format option from the drop-down menu.

STEP 4: Click Ok to save your settings.

Related Posts:


In this lesson I'm going to teach you how to overcome formatting errors when you input data to excel sheet from a text box, combo box etc.
Here is a my own experience. Once I had a date value 01/08/2014 in one of text box of a user form.I got that value to the text box from a date picker. So it was in the format dd/mm/yyyy.
So the above date refers to 1st of August 2014.
However when data entered to the excel sheet it took the form of 08/01/2014
Solved%3a Date Format Issue ExcelSo now it refers to 8th of January 2014
Solved%3a Date Format Issue Excel If you face this kind of situation here below is the solution.Just format the value using Format function before input data to the sheet.
Solved%3a date format issue excellent

Solved%3a Date Format Issue Excel 2016

Here txtDueDate is the name of the text box. Below example enters date value to cell E3 of worksheet('Data')
Dim WS as worksheet
set WS=worksheets('Data')
Dim DDate As Date
DDate = Format(txtDueDate.Text, 'dd/mm/yyyy')
WS.Range('E3').Value = DDate