From: Jen_T on
If a cell has text and numeric (date) is there a way to pull the date out
easily ?
E.g.
Product dropped off on 11/01/2009 by Michelle Smith
I would like to see 11/01/2009

Thank you
From: T. Valko on
Try this...

=LOOKUP(1E100,--MID(A2,MIN(FIND({0,1,2,3,4,5,6,7,8,9},A2&"0123456789")),ROW(INDIRECT("1:"&LEN(A2)))))

Format as Date

--
Biff
Microsoft Excel MVP


"Jen_T" <JenT(a)discussions.microsoft.com> wrote in message
news:24E6D3D1-892D-4A59-8BD4-BFA191F63ED4(a)microsoft.com...
> If a cell has text and numeric (date) is there a way to pull the date out
> easily ?
> E.g.
> Product dropped off on 11/01/2009 by Michelle Smith
> I would like to see 11/01/2009
>
> Thank you


From: Luke M on
=DATEVALUE(MID(A2,FIND("/",A2)-2,10))

Format as date.

--
Best Regards,

Luke M
"Jen_T" <JenT(a)discussions.microsoft.com> wrote in message
news:24E6D3D1-892D-4A59-8BD4-BFA191F63ED4(a)microsoft.com...
> If a cell has text and numeric (date) is there a way to pull the date out
> easily ?
> E.g.
> Product dropped off on 11/01/2009 by Michelle Smith
> I would like to see 11/01/2009
>
> Thank you


From: Ron on
Here's some possible leads:
http://office.microsoft.com/en-us/excel/HA011549011033.aspx
http://www.meadinkent.co.uk/xlextracttext.htm

"Jen_T" wrote:

> If a cell has text and numeric (date) is there a way to pull the date out
> easily ?
> E.g.
> Product dropped off on 11/01/2009 by Michelle Smith
> I would like to see 11/01/2009
>
> Thank you
From: Ron on
Brilliant Biff

"T. Valko" wrote:

> Try this...
>
> =LOOKUP(1E100,--MID(A2,MIN(FIND({0,1,2,3,4,5,6,7,8,9},A2&"0123456789")),ROW(INDIRECT("1:"&LEN(A2)))))
>
> Format as Date
>
> --
> Biff
> Microsoft Excel MVP
>
>
> "Jen_T" <JenT(a)discussions.microsoft.com> wrote in message
> news:24E6D3D1-892D-4A59-8BD4-BFA191F63ED4(a)microsoft.com...
> > If a cell has text and numeric (date) is there a way to pull the date out
> > easily ?
> > E.g.
> > Product dropped off on 11/01/2009 by Michelle Smith
> > I would like to see 11/01/2009
> >
> > Thank you
>
>
> .
>