Hi,
To save a lot of time and tedious work, I have a formula I want to transpose from column to row, but it doesn’t seem to work like expected.
The formula is as follows (translated to English, so not sure if the function names are correct):
=SUM(INDIRECT(CONCATENATE($A2 & "1"));INDIRECT(CONCATENATE($B2 & "1"));INDIRECT(CONCATENATE($C2 & "1"));
So when I copy this formula and paste it in the same column, the formula behaves as expected. I get the following result:
=SUM(INDIRECT(CONCATENATE($A3 & "1"));INDIRECT(CONCATENATE($B3 & "1"));INDIRECT(CONCATENATE($C3 & "1"));
Instead of having this formula in the column, I want to have this exact format in a row. So for the whole row, I want to have it like [Column + (Rownumber+1)]
.
I looked at the transpose function, but this only transposes the matrix it seems, which is not what I want.
An example document I’ve created:
TransposeFunctionExample.ods (17.9 KB)
In this document I want to have the formula spanning variable A to C in week 1, to span over week 1 to 3 instead.
Maybe there is some function in LO which I have overlooked that is able to do what I want?