I am working on a spreadsheet with 2 sheets. Sheet one has 71 columns x 104 rows of data. Each row is data for one individual. In Sheet 2 I am compiling a single row's worth of data into a 13x13 cell block, not every cell is used for referencing sheet 1 cells.
Is there a way to fill in the "block" of cells with all of Row 1's data and autofill/paste row 2,3,4,5, etc. with the same formatting. I want to paste the block of cells while increasing each formula's cell reference by 1. The cell references aren't linear or sequential, rather they are sort of random in their positioning.
Thanks!
screenshot of data, each row is 1 individual (data is incomplete currently)
Screen shot of block of data
Screenshot showing cell references
row_num
. Let's say it's cell N1. Then you'll need to write a formula for each of your cell. For exampe your A3 cell with the formula=Info!A2
will probably have to become=INDEX(Info!A:ZZ, N1,1)
whereInfo!A:ZZ
will cover you data table,N1
will determine your row (you'll have to start from row 2) and1
will refers to the 1st column of the table (column A). You could also add a spinbutton connected to cell N1 to easily swap between rows. – Evil Blue Monkey