I need to return the contents of a cell in a worksheet. The column number will be static (say, 1, or really, 4) while the row number will be a varying number of rows below a row number in the worksheet, and that reference row number I can obtain with the formula:
=MATCH("UNIT: TOTAL",'current ytd rank new'!$B$1:$B$2500,0)
so for example, in my curren ytd rank new worksheet, this formula returns the value of 2237. This means that the formula:
=INDEX('current ytd rank new'!$A$1:$F$2500,MATCH("UNIT: TOTAL",'current ytd rank new'!$B$1:$B$2500,0),1)
which is based on the first formula, returns me the cell reference whose column is $A and whose row is 2237.
OK, but now I want to reference a row, below (beyond) this row number, and whose contents in col. A will be certain text that I specify (eventually this text will be itself referenced from another worksheet, but for this diagnostic I can stipulate it), say "speed of admission."
So, I have a cell-based starting point, and the text-string contents of the cell to which I want to reference, probably with the OFFSET function. And finally I'll offset over to column 4 and I'll have it.
Can someone advise me about how to OFFSET from a cell reference point a certain number or rows indicated by the number of rows away from the reference cell that certain text contents can be found?
Many thanks--
T.Y.
=MATCH("UNIT: TOTAL",'current ytd rank new'!$B$1:$B$2500,0)
so for example, in my curren ytd rank new worksheet, this formula returns the value of 2237. This means that the formula:
=INDEX('current ytd rank new'!$A$1:$F$2500,MATCH("UNIT: TOTAL",'current ytd rank new'!$B$1:$B$2500,0),1)
which is based on the first formula, returns me the cell reference whose column is $A and whose row is 2237.
OK, but now I want to reference a row, below (beyond) this row number, and whose contents in col. A will be certain text that I specify (eventually this text will be itself referenced from another worksheet, but for this diagnostic I can stipulate it), say "speed of admission."
So, I have a cell-based starting point, and the text-string contents of the cell to which I want to reference, probably with the OFFSET function. And finally I'll offset over to column 4 and I'll have it.
Can someone advise me about how to OFFSET from a cell reference point a certain number or rows indicated by the number of rows away from the reference cell that certain text contents can be found?
Many thanks--
T.Y.