Concatenate

vishesh10667

New Member
Joined
Nov 26, 2019
Messages
18
Office Version
  1. 2007
Platform
  1. Windows
Hi, I have a list of items in Column B and each items in B should concatenate with the list in column C.

For example: Cell B1: Reebok, and Cell C1: T-Shirt, C2: Shoes, Etc.,
and Cell B2: Lacoste, and Cell C1: T-shirt, C2: Shoes, Etc.

Output : D1: Reebok T-shirt, D2: Reebok Shoes, D3: Lacoste T-shirt, D4: Lacoste Shoes etc.

Is there any formula to concatenate like this?
 
I need it like this

Hi, here is a formula option you could also try.

Cell Formulas
RangeFormula
C2:C16C2=INDEX($A$2:$A$6,ROUNDUP(ROWS(C$2:C2)/COUNTA($B$2:$B$4),0))&" "&INDEX($B$2:$B$4,MOD(ROWS(C$2:C2)-1,3)+1)
 
Upvote 0

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Here's a formula (a bit long - maybe someone can suggest a shorter one).
Put in D1 and drag down:

Rich (BB code):
=INDIRECT("B" & (INT((ROW()-1)/COUNTA(C:C))+1)) & INDIRECT("C" & MOD(ROW(),COUNTA(C:C))+(MOD(ROW(),COUNTA(C:C))=0)*COUNTA(C:C))
 
Upvote 0

Forum statistics

Threads
1,214,584
Messages
6,120,387
Members
448,956
Latest member
JPav

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