Combine columns

  • Thread starter Thread starter smash123
  • Start date Start date
S

smash123

Hello everyone, I have an excel problem please help me if you can.

I have ‘Apple’ in A1 and ‘Orange’ in B2

Looks like this in excel:

Apple(A1)
Orange(B2)

I need to move B2 ‘Orange’ to column A at the same row which is A2
while not remove ‘Apple’. A2 is empty space. Here is the result I
need:

Apple(A1)
Orange(A2)


I’m facing about 5000 row of this kind of data. Please let me know any
shortcut way to do this. Thank you very much!!
 
smash123 said:
Hello everyone, I have an excel problem please help me if you can.

I have 'Apple' in A1 and 'Orange' in B2

Looks like this in excel:

Apple(A1)
Orange(B2)

I need to move B2 'Orange' to column A at the same row which is A2
while not remove 'Apple'. A2 is empty space. Here is the result I
need:

Apple(A1)
Orange(A2)


I'm facing about 5000 row of this kind of data. Please let me know any
shortcut way to do this. Thank you very much!!

Hi,

One way would be to use the Paste Special option.
If you make a backup of your sheet first. If you have no other data in
column A and B then highlight column B and goto Edit -> Copy. Now
Highlight column A and go to Edit -> Paste Special and tjeck mark the
Skip Blanks Option and clik OK.

Regards,
Bondi
 
If there is ALWAYS a blank cell in Column A where the corresponding B is
non-blank, then in a "helper" column:

=IF(A1<>"",A1,B1) and copy down

If A1 is present, then put A1 in cell, otherwise put B1

If this is correct, then for the "helper" column, you can copy and paste
special values and then delete A & B if required.

HTH
 
Select Column A and F5>Special>Blanks>OK

Edit>Delete>Shift cells left.


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top