Forum Discussion

Ben72's avatar
Ben72
Copper Contributor
Jun 19, 2020
Solved

Referencing a cell using static column and generic row values

I need a formula that will generate a cell address by matching a static column value with a dynamic row value.   The Kind Of Solution I believe I Am Looking For (that doesn't work just yet, but you...
  • Maverick494's avatar
    Maverick494
    Jun 19, 2020

    Ben72 It sounds an awful lot like there might be a sheet in your file with a list of addresses and emails associated.  If that is the case then a VLOOKUP might work.

    Genericish:
    =VLOOKUP("H" & ROW(), <Sheet with addresses>!<Range of address columns and rows (EG. A1:A55)>, col_index_num (the column the email address is in, EG. 2), FALSE (exact Match Only))

    so as a made up example if on sheet2 column A there are Rows A1:A55 with addresses and B1:B55 with associated emails:
    =VLOOKUP("H"&ROW(),Sheet2!A1:A55,2,FALSE)

Resources