Reputation: 429
I need to populate a table with horizontally referring to values that are vertically from another table
In the horizontal table I'm doing the following
='Tab 3x3'!G10
But when I drag to the side it increments the column, not the cell. It would need him to continue G11, G12 .. and so on.
I've tried to anchor ($) in every way but it's no use. I also tried using TRANSPOSE that even worked but it got a mess, I would need the same reference as the above formula. I also researched and found a staff using Offset, but I could not quite understand.
Any easy way to do this?
Upvotes: 1
Views: 3108
Reputation: 1040
USE
=INDIRECT("'tab 3x3'!"&ADDRESS(COLUMNS($A$7:E7)+5,7),TRUE)
Or in light of the comment from Scott, use
=OFFSET('tab 3x3'!$G$10,COLUMNS('tab 3x3'!$G$10:G10)-1,0)
Upvotes: 0