Google Sheets – How to Parse Date and Time in Specific Format

google sheetsgoogle-sheets-dates

I have a CSV file with dates in the following format:

2012-06-20T00:00:00+00:00

Is it possible to parse a date or date and time in this format? The goal is to turn it into a date and time that Google Spreadsheet understands.

The format is YYYY-MM-DDTHH:MM:SS.

Best Answer

Maybe:

=left(A1,10)+mid(A1,12,8)