Convert text from multiple rows to one column

smide

Board Regular
Joined
Dec 20, 2015
Messages
162
Office Version
  1. 2016
Platform
  1. Windows
Hello.

In rows 2:8 (cells C2:G8) I have a text (all those cells contain formulas).

I need formula (or VBA) to covert text from those rows into a single column (column A), without blank cells from C2:G8 range.
Some rows could contain all blank cells.

example.

Sheet1 (before formula/VBA)

A​
B​
C​
D​
E​
F​
G​
1​
2​
TorontoMunich
3​
Leipzig
4​
5​
CalgaryMelbourneDetroit
6​
7​
ParisPerth
8​
ViennaFlorenceTurinGenevaBern

Sheet1 (after formula/VBA)

A​
B​
C​
D​
E​
F​
G​
1
Results
2TorontoTorontoMunich
3MunichLeipzig
4Leipzig
5CalgaryCalgaryMelbourneDetroit
6Melbourne
7DetroitParisPerth
8ParisViennaFlorenceTurinGenevaBern
9Perth
10Vienna
11Florence
12Turin
13Geneva
14Bern
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
VBA Code:
Sub MergeMe()
    counter = 2
    For Each cl In Range("C2:G8")
        If Trim(cl) <> "" Then
            Range("A" & counter).Value = cl.Value
            counter = counter + 1
        End If
    Next cl
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,660
Messages
6,126,082
Members
449,286
Latest member
Lantern

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