Skip to main content

How to convert yyyymmdd to normal date format in Excel?

Maybe, there are multiple date with yyyymmdd format, and now, you want to change the date to the normal date format as mm/dd/yyyy in Excel as following screenshot shown. If you apply the Format Cells function in Excel, you will get the result like ###########, how could you convert the yyyymmdd to normal date format correctly in Excel?


The following simple formula may help you to convert the yyyymmdd to normal date format, please do as follows:

1. Please enter this formula: =DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2)) into a blank cell besides your data, see screenshot:

doc convert to normal date 2

2. Then drag the fill handle down to the cells that you want to contain this formula, and the data in column A has been converted to the normal date as follows:

doc convert to normal date 3


Convert various non-standard date format to real date format with only one click

If you have multiple non-standard date format, such as yyyymmdd format, the normal Format Cells feature in Excel will not work well for you. With Kutools for Excel’s Convert to Date utility, you can quickly convert various non-standard dates to your locale date formats. Click to download Kutools for Excel!

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!


The Text To Column function in Excel also can convert this date format to the normal date, follow the instructions step by step:

1. Select the data range that you want to convert.

2. Click Data > Text To Column, see screenshot:

doc convert to normal date 4

3. In step 1 of Convert Text to Column Wizard, select Delimited option, see screenshot:

doc convert to normal date 5

4. Then click Next > Next go to the Step 3 of 3 wizard, in this step, select Date under the Column data format, then choose YMD from the drop down list, see screenshot:

doc convert to normal date 6

5. And then click Finish button, the yyyymmdd format has been converted to the mm/dd/yyyy date format. See screenshots:

doc convert to normal date 7  2 doc convert to normal date 8

If you are interested in VBA code, here, I will provide a code for you to solve this task.

1. Please hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module window.

VBA code: convert yyyymmdd to normal date format

Sub ConvertYYYYMMDDToDate()
'Updateby Extendoffice
Dim x As Range
Dim Workx As Range
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set Workx = Application.Selection
Set Workx = Application.InputBox("Range", xTitleId, Workx.Address, Type:=8)
   For Each x In Workx
       x.Value = DateSerial(Left(x.Value, 4), Mid(x.Value, 5, 2), Right(x.Value, 2))
       x.NumberFormat = "mm/dd/yyyy"
   Next
End Sub

3. After pasting the code, then press F5 key to run this code, and select the data range that you want to use from the popped out dialog, see screenshot:

doc convert to normal date 9

4. And then click OK, the data in the range has been converted to date format.


Except the above yyyymmdd format, sometimes, you may have other types of non-date format data need to be converted to the normal date format, in this case, I can introduce a useful tool--Kutools for Excel, with its Convert to Date feature, you can quickly convert various non-date format data to real date format.

Kutools for Excel : with more than 300 handy Excel add-ins, free to try with no limitation in 30 days

After installing Kutools for Excel, please do as this:

1. Select the data range that you want to convert.

2. Click Kutools > Content > Convert to Date, see screenshot:

3. And you will get all the selected data has been converted to the standard date format, see screenshot:

doc convert to normal date 11

Note: You can highlight all the records in the Convert to Date dialog box, and click Recover to cancel this operation and return to your original data as following screenshot shown:

doc convert to normal date 12

Download and free trial Kutools for Excel Now !


Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (3)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
An elegant solution to an infuriating problem. Thanks
This comment was minimized by the moderator on the site
This formula works as well: =DATE(QUOTIENT(INTEGER(A1);10000);QUOTIENT(MOD(INTEGER(A1);10000);100);MOD(INTEGER(A1);100)) No need for additional packages.
This comment was minimized by the moderator on the site
hi. i have a some data of temp that measures in 10 years. i want accuse number to this date. how can i do it ? 1903/03/12 125.25 >>>>> how i van have this ? 1 125.25 1903/03/13 165.69>>>>> how i van have this ? 2 168.69 1903/03/27 135.75 >>>>> how i van have this ? 16 135.75 1903/04/04 122.94 >>>>> how i van have this ?34 122.94 1903/04/16 124.26 >>>>> how i van have this ? 46 124.26
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations