consolidate 3 columns to 1 column

mlektra

New Member
Joined
Jun 2, 2008
Messages
14
Hi guys, I have formulas that output values in 3 columns (H-I-J). What formula should I put in column K if I want to consolidate everything that is in columns H-I-J but WITHOUT the use of VBA?


WepZDGn.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
You can use the CONCATENATE function, or use a formula like this:
Code:
=H1 & I1 & J1
and copy down for all rows.
 
Upvote 0
No sorry guys. What I want is what is in column H. Then column I, then column J. So each list append to the other :

H1
H2
H3
....
...
... (till the end)
I1
I2
I3
....
...
... (till the end)
J1
J2
J3
....
...
... (till the end)


Thing to remember is sometimes H column could have 30 entries, sometimes 40, sometimes 20.
 
Upvote 0
Without the use of VBA?
I suppose it might be possible to come up with some complex formulas to do it, but quite frankly it is a whole lot easier to use Copy and Paste.
Actually out of all three options (Copy and Paste, Formulas, or VBA), formulas are probably the hardest and messiest and might not end up with the prettiest results (as you are not sure how many rows worth of formulas you would need to copy down).
 
Upvote 0

Forum statistics

Threads
1,226,730
Messages
6,192,702
Members
453,748
Latest member
akhtarf3

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