View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Extracting text from a cell

=MID(A2,FIND("@",A2)+1,FIND(".",A2)-FIND("@",A2)-1)
--
David Biddulph

"jmberner" wrote in message
...
Hello,

I am attempting to extract text from an email address in a cell.
For example
If the cells are the following



I want to write a formula that will extract
Company
AnotherCompany

Any help will be appreciated.