• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Not an easy Excel question...or maybe it is....

I am pretty good at Excel, but this problem has me stumped...


Every month I get a report that has 5 columns, of which 4 are mostly headers and the last contains data, approximately 290 rows worth. The rows are matched up and stuck into a tracking sheet, with every row lining up. The first 4 header columns are kept consistent and aren't tracked, naturally. The data looks like below. D1 will be the first month, with following months in each column.

HHHH M1-M2-M3-M4
HHHH M1-M2-M3-M4

From this data I need to pull specific numbers, which goes into another tracking sheet which reports on the numbers, calculating further formulas. There is approx 100 "months" of data, with the headers as columns but the actual data in rows. The data is structured like this.

H H H H
M1 M1...
M2 M2...
M3 M3...
M4 M4...

So, the problem is that when I drag down the M4 to be M5, it naturally looks at the report sheet and drags down M1 2nd piece of data, since when you copy cells down, it uses the formula reference below the foruma from above. If you are dragging down a formula referencing cell M32, if you drag it down it will reference M33.

What I want is that if I drag down M32, it will reference N32.

Obviously I could do a transpose of either one of the data tables to match rows to columns, but the amount of data and the way its structured and the graphs referenced to it would equate to a massive pain in the ass.

Does anybody know of a way to drag down but reference to the side???

edit: I know about copy->transpose, but that doesn't get me what I need.
 
I'm not sure that I'm following this at all. However, it looks like you want a formula on Sheet2 that basically transposes the data from Sheet1, and that can be copied and pasted. So, on Sheet2 the result in the 3rd column and 1st row should come from Sheet1's 1st column and 3rd row. Is that right?

If so, then on Sheet2 you can use this formula (or some variant):

=OFFSET(Sheet1!$A$1,COLUMN()-1,ROW()-1)

Let me know if that works or not.
 
Back
Top