This query may get you started. This will get the valid dates from the details field.
Code:
SELECT Bigroo.Details,
Mid([dETAILS],InStrRev([Details]," ")+1,Len([Details])-InStrRev([Details]," ")) AS x,
FROM Bigroo
WHERE (((IsDate(Mid([dETAILS],InStrRev([Details]," ")+1,Len([Details])-InStrRev([Details]," "))))=True));
Result based on your data
Details |
x |
Silent from Black Gospel 5/19/2003 |
5/19/2003 |
Oldies from Adult Stand. 11/1/2007 |
11/1/2007 |
Amistad Communications from Greenwood Acres Baptist Church 3/8/2006 |
3/8/2006 |
Robert J. and Mary J.E. Whitaker, LLC from Amistad Communications 7/9/2010 |
7/9/2010 |