Reputation: 1548
I have a list of date values like, November 23, 2016 4:21:02 PM GMT-06:00
. How to sort this in Excel? I would like to know the possible formula (or how to make one) to get the date out of it.
Upvotes: 1
Views: 1572
Reputation: 152585
use this formula:
=INT(--LEFT(A1,FIND("GMT",A1)-1))
Then format the date as you would like.
Upvotes: 2