Good Evening,
I'm trying to drag/copy-paste an indirect formula where the row value in the reference changes. Then continue the pattern over hundreds of cells. This is the general idea:
=INDIRECT("Sheet1!A3")
=INDIRECT("Sheet1!C3")
=INDIRECT("Sheet1!E3")
=INDIRECT("Sheet1!H3")
=INDIRECT("Sheet1!I3")
=INDIRECT("Sheet1!A11")
=INDIRECT("Sheet1!C11")
=INDIRECT("Sheet1!E11")
=INDIRECT("Sheet1!H11")
=INDIRECT("Sheet1!I11")
So on, so on. So, I need the column to change 5 times within the same row, then the row to change by 8 and have that repeat. Currently I'm manually changing the Cell and it's becoming exhausting as the sheet grows. I thought I could do this with OFFSET but I'm having issues figuring out how.
I'm trying to drag/copy-paste an indirect formula where the row value in the reference changes. Then continue the pattern over hundreds of cells. This is the general idea:
=INDIRECT("Sheet1!A3")
=INDIRECT("Sheet1!C3")
=INDIRECT("Sheet1!E3")
=INDIRECT("Sheet1!H3")
=INDIRECT("Sheet1!I3")
=INDIRECT("Sheet1!A11")
=INDIRECT("Sheet1!C11")
=INDIRECT("Sheet1!E11")
=INDIRECT("Sheet1!H11")
=INDIRECT("Sheet1!I11")
So on, so on. So, I need the column to change 5 times within the same row, then the row to change by 8 and have that repeat. Currently I'm manually changing the Cell and it's becoming exhausting as the sheet grows. I thought I could do this with OFFSET but I'm having issues figuring out how.