View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
RJB RJB is offline
external usenet poster
 
Posts: 86
Default Combining an IF formula with FIND

I have a big ugly spreadsheet dumped from an external nondelimited file.

18 columns by 72000 lines (two files)... so...

In one cell every so often there is a piece of data that I need to head the
next two, three, four, five lines below it. It will ALWAYS be preceded by
text "ING1AR", but "ING1AR" will not necessarily be the first six characters
in the cell.

I know I can filter for that, but that won't let me see the data that falls
in the lines below it.

I was hoping to create a column that basically said, IF that cell contains
"ING1AR", tell me everything that comes after that.

I know if I do "MID(cell,FIND...." I can pull out what comes after the text,
but not how to combine that with an IF statement...

Does that make sense?