row index number (hlookup)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

=IF(F4="","",(HLOOKUP(F4,$R$2:IV251,3,FALSE))) is my formula

I need The three (row index number argument) to roll progressively or match the row of the formula. So when I copy the formula down it will change to 4, 5 so on, or match the row number. Any help is greatly appreciated. Thank you. Mark
 
Hi
try
=IF(F4="","",(HLOOKUP(F4,$R$2:IV251,ROW()-1,FALSE)))
assuming that this formula is in row 4. copy down
 
Hi

=IF(F4="","",(HLOOKUP(F4,$R$2:IV251,ROW(F3),FALSE)))


--
(Don't use my reply address - it's spam-trap)

Arvi Laanemets



Mark Thomas said:
=IF(F4="","",(HLOOKUP(F4,$R$2:IV251,3,FALSE))) is my formula.

I need The three (row index number argument) to roll progressively or
match the row of the formula. So when I copy the formula down it will
change to 4, 5 so on, or match the row number. Any help is greatly
appreciated. Thank you. Mark
 
Back
Top