formula that will reference another worksheets info. same book

  • Thread starter Thread starter Jeff Wood
  • Start date Start date
J

Jeff Wood

I want to write a formula that will reference info on another worksheet
within the same workbook
 
Jeff said:
I want to write a formula that will reference info on another worksheet
within the same workbook

Try "Create a reference between cells on the same or different worksheets" in
the help file.
 
An example of a formula that addresses another worksheet to find a value in
an array and then selects the corresponding value in a previous column. Kind
of a reverse Vlookup. For your problem, notice the nomenclature for
addressing a cell in another worksheet

=OFFSET(INDIRECT("'worksheetname'!" &
ADDRESS(MATCH(E32,'worksheetname'!B31:B41)
+ROW(worksheetname'!B30),COLUMN('worksheetname'!B31))),0,-1)
 
Back
Top