Concatenate Merge & normal cell

jasontoh

New Member
Joined
May 13, 2011
Messages
16
Hi,

Pls help me to make CONCATENATE formula

A1:D1 is merge cell with content "XX"
A2 = "11", B2 ="12", C2 ="13", D2="14"
How can I make a formula to CONCATENATE row 1 & 2 to get row 3 as:
A3 ="XX11", B3 = "XX12", C3="XX13", D3="XX14"

any help is appreciated.

Jason
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi Dannyh1,

No, as shown in post #10, row 1 can have cell merge with different no. of columns

Jason
 
Upvote 0
Bit of a cop out, but can you insert a row between row 1 & 2

Then

A2 = A1
B2 = =IF(B1="",A2,B1) Copy accross

A4 = A2&A3 Copy accross

Hide row 2

?
 
Upvote 0
Jasontoh,

Try this:

=INDEX(1:1;1;(4*INT((COLUMN()-1)/4)+1))&A2

Markmzz

If you read the thread properly you could have avoided posting a formula that is of no use.

Try

=LOOKUP(2,1/($A1:A1<>""),$A1:A1)&A2
 
Upvote 0
Jasontoh,

Or try this (use Ctrl+Shift+Enter and not only Enter),

=INDEX(1:1,1,LARGE(COLUMN($A$1:A1)*(--($A$1:A1<>"")),1))&A2

Markmzz
 
Last edited:
Upvote 0
markmzz, Your idea does not work per what I want
Maybe you have misunderstood me

I am happy with jasonb75's solution
 
Upvote 0

Forum statistics

Threads
1,224,604
Messages
6,179,857
Members
452,948
Latest member
UsmanAli786

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