0
votes

I have 2 columns: col1, col2 Both have interleaved data and empty cells like the image here- enter image description here

How do I combine col1,2 contents to get col3.

I tried using If to find empty cells and not copy content when cell was empty, but the destination column was overwritten by blank cell.

1
concatenate the two cells - jsotola
Cell C1: =A1&B1. Only one will show if the other is empty - Mech
This is so simple. Thanks. - hithesh

1 Answers

1
votes

You can do it in different way. Try below formulas-

=A2&B2
=CONCATENATE(A2,B2)
=IF(ISBLANK(A2),B2,A2)

enter image description here