I've been trying to figure this out for a while.
I need to find the content of a specific cell relative to my current cell. The relativity isn't the typical counting relationship but rather an equational relationship (if there's a word for the form of relativity, I'm curious to know what it is).
Anyhoo, this will return the column/row I'd need for any cell:
=ADDRESS((ROW()+8-MOD(ROW(),4))/4,2)
So I've got that information. Now I need to get the content of that cell. I've tried the CELL function, I've tried using this formula: (Let it be noted, I'm getting the cell from a different sheet).
='Form Responses 1'!ADDRESS((ROW()+8-MOD(ROW(),4))/4,2)
So far, I've gotten nowhere.
Any ideas?