Thread
:
Extracting date, month & year from a text string without using date format Help
View Single Post
05-27-2021, 10:40 PM
xor
Windows 10
Office 2016
Expert
Join Date: Oct 2015
Posts: 1,101
date =--MID(A1,FIND(" ",A1)+1,FIND(",",A1)-FIND(" ",A1)-1)
month =MID(A1,1,FIND(" ",A1)-1)
year =--MID(A1,FIND(",",A1)+2,4)
xor
View Public Profile
Find all posts by xor