A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Thanks Hans
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have thousands of records in Column A with the Date written in text like 20190131 and not an official data format. Is there a formula I can use to change them all to official dates so I can filter and group them in pivot tables and such?
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Thanks Hans
With a value such as 20190131 in D2, the formula
=DATE(LEFT(D2, 4), MID(D2, 5, 2), RIGHT(D2, 2))
will return the corresponding date,