Extracting Date from Text

joeylee

New Member
Joined
Aug 29, 2019
Messages
2
I am trying to extract a date from text of varying length.

Examples:
Insulated and 2-Side set by jlee on 8/8/2019 at 3:24:20 PM

USACE/White MEP Framing Inspection set by jlee on 8/6/2019 at 6:38:39 PM

White Inspection set by jlee on 8/7/2019 at 7:31:10 AM


I used the equation:
=MID(A1,(FIND("/",A1,1)-2),10)

Which returns the correct date in the format ??/??/???? for all except the entries with a slash at the beginning of the entry.

How can I input a function to only take the end "/" as the correct one?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hey,

try with this wildcard:

=IFERROR(MID(A1,SEARCH("/?/",A1)-2,10),MID(A1,SEARCH("/??/",A1)-2,10))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,831
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top