View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
hmsawyer hmsawyer is offline
external usenet poster
 
Posts: 33
Default Match/Index problem with new rows

I have the following formulas set up and they work fine for rows 3 - 21,
which was what it was initially set up for. However, I added additional rows
(up to 101) to the original worksheet and now only the match works. It
always pulls the correct data, but the index only returns #REF for all of the
fields it is in these newly added rows.

=MATCH(E3,Employees,0)

=IF(INDEX(Data,$H$3,COLUMN(A1))="","",INDEX(Data,$ H$3,COLUMN(A1)))

=IF(A6="","",INDEX(Data,$H$3,COLUMN(B1)))

How can I get it corrected for the new rows? Thank you.