Home > Blockchain >  Excel: How to merge two columns into one (from different sheets or separated columns)
Excel: How to merge two columns into one (from different sheets or separated columns)

Time:02-08

I have met some problem with merging two columns to one. I have some solution but not exactly fits to my problem (found here: enter image description here

CodePudding user response:

If you want to stick to your formula, then you could modify it like this:

enter image description here

If you want to place it on a different sheet you just add the sheet name:

=INDEX(MySheet!$A$2:$D$9;ROUND(ROW(MySheet!A1)/2;0);IF(MOD(ROW()-ROW(MySheet!$A$2);2)=1;4;1))
=INDEX(MySheet!$A$2:$D$9;ROUND(ROW(MySheet!A1)/2;0);IF(MOD(ROW()-ROW(MySheet!$A$1);2)=1;4;1))
  •  Tags:  
  • Related