9.ods (33.4 KB)
I have this situation. How can i get the values from sheet2 transposed diagonally on sheet 1, when the row date is equal to column date?
I need a function (not array), so that when the source updates, the result updates.
Thank you.
In B3
=IFERROR(VLOOKUP(IF($A3=B$1;$A3;"");$Sheet2.$A:$B;2;0);"")
and replicate to the other cells.
It works, but in this situation how can i do it?
10.ods (41.0 KB)
There’s an extra condition.
Sorry for not putting the issue from the beginning.
What is the expected outcome?
Guess
In C3
=IFERROR(VLOOKUP(IF($B3=C$1;$B3;"");$Sheet2.$A:$D;IF($A3="Alfa";2;IF($A3="Beta";3;IF($A3="Gamma";4;"")));0);"")
and replicate to the other cells.
The second “if” statement could be replaced.


1 Like