I want to get a lot of data from Sheet1 to Sheet2 but when I pull a command to the right it should only increase the "C" to a "D" every third row. Because I have 3 commands to pull to the right and all should just increade by one not by 3.
A1 looks like this:
=WENN(Sheet1!C3>0;Sheet1!C$2;"")
B1 like this:
=WENN(Sheet1!C3>0;Sheet1!$A3;"")
C1 like this:
=WENN(Sheet1!C3>0;Sheet1!C3;"")
When I pull it to the right it they change like this:
=WENN(Sheet1!F3>0;Sheet1!F$2;"")
=WENN(Sheet1!F3>0;Sheet1!$A3;"")
=WENN(Sheet1!F3>0;Sheet1!F3;"")
But I want:
=WENN(Sheet1!D3>0;Sheet1!D$2;"")
=WENN(Sheet1!D3>0;Sheet1!$A3;"")
=WENN(Sheet1!D3>0;Sheet1!D3;"")
I hope you know what I mean. Is there any way to do this?