1

I am looking for simple way to combine data in excel sheet. I want to avoid adding rows manually. Could You give me a hint how to do this simple way? enter image description here

Oskar Groth
  • 28
  • 2
  • 5

1 Answers1

2

Manually place the headers in H1, I1, and J1. Then in H2 enter:

=INDEX($A$2:$A$9999,ROUNDUP(ROWS($1:1)/(COUNTA(C:C)-1),0))

amd copy downwards. In I2 enter:

=INDEX($C$2:$C$9999,MOD(ROWS($1:1)-1,COUNTA(C:C)-1)+1)

and copy downwards. In J2 enter:

=INDEX($D$2:$D$9999,MOD(ROWS($1:1)-1,COUNTA(D:D)-1)+1)

and copy downwards.

enter image description here

Gary's Student
  • 95,722
  • 10
  • 59
  • 99