Say in A1 thru A100 we have:
now
is
the
time
for
all
good
men
to
sidney
or
some
other
place
other
than
sidney
=MATCH("sidney",A1:A100,0) will find the first sidney
Clearly if the first sidney is in cell A10, then to find the "next" sidney
we would like to use:
=MATCH("sidney",A11:A100,0)+10 but automate the process.
So if D1 contains:
=MATCH("sidney",A1:A100,0)
then in D2 enter:
=MATCH("sidney",INDIRECT("A" & D1+1 & ":A100"),0)+D1
and copy down. This will give you the row numbers of all the "sidneys"