Concatenate 2 cells followed by a blank

dickpierce

Board Regular
Joined
Nov 26, 2004
Messages
148
Office Version
  1. 2007
Platform
  1. Windows
Hello! I'd like to concatenate the 2 cells in A2 and A3 but not A3 and A4, which I'd like to leave blank. Cells A3 and A4 would be concatenated, followed by a blank cell in A5. Is it possible? Thanks in advance.



A B

a ab
b
c cd
d
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
try this in B3 and copy down

=IF(MOD(ROW(A3),2)=1,A3&A4,"")
 
Upvote 0
Something like this in B2 assuming there is nothing in B1:

=IF(B1="", CONCATENATE(A2, A3), "")

Otherwise:

In B2:

=CONCATENATE(A2, A3)

In B3:

=IF(B2="", CONCATENATE(A3, A4), "")
 
Last edited:
Upvote 0
Finalfight! Your formula worked great! Thanks so much. Alan yours not so much lol, but thanks for your work.
 
Upvote 0
Finalfight! Your formula worked great! Thanks so much. Alan yours not so much lol, but thanks for your work.

ok, i'd miss read your post, try this in B2 and copy down

=IF(MOD(ROW(A2),2)=0,A2&A3,"")
 
Upvote 0
Yep! That worked fine Alan, thanks!

Don't know which of the 2 formulas is better! Yours or Final's?
 
Upvote 0

Forum statistics

Threads
1,215,078
Messages
6,122,997
Members
449,093
Latest member
masterms

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top