View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default Pull date from cell with text also

Or, in VB code...

DateAtEndOfText = Mid(Range("A30").Value, 15)

--
Rick (MVP - Excel)


"Rick Rothstein" wrote in message
...
Will your text part *always* be "Release Date: "? If so,

=MID(A30,15,10)

--
Rick (MVP - Excel)


"Jason" wrote in message
...
I have a cell ("A30") on a temporary sheet that contains:
Release Date: 7/30/2009
I want to pull the date from this cell.
I've looked at the Right function but the problem is that the date can
obviously grow or shrink because it is apparently in the m/d/yyyy format.
I've also looked at Find but cant seem to get the right syntax.

Any suggestions would be greatly appreciated!