View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Pull date from cell with text also


With the text/Date in A1 you can use something like this

=MID(A1,FIND(":",A1,1)+1,255)


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"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!