jaykilleen
New Member
Hi, I am new to VBA but going through the lessons now. For the moment I have a problem I cannot solve.
On Sheet 1:
A B
1 a
2 b
3 c
4 d
5 e
I want to be able to run a macro to concatenate all values in Column A with all values in column B separated by a space.
So I will get column C as:
1 a
1 b
1 c
1 d
1 e
2 a
2 b
2 c
etc
etc
etc
In the future the ranges in column A and B will grow or I might require a third column C to be added to the concatenation.
Does anyone have any idea how to do this?
On Sheet 1:
A B
1 a
2 b
3 c
4 d
5 e
I want to be able to run a macro to concatenate all values in Column A with all values in column B separated by a space.
So I will get column C as:
1 a
1 b
1 c
1 d
1 e
2 a
2 b
2 c
etc
etc
etc
In the future the ranges in column A and B will grow or I might require a third column C to be added to the concatenation.
Does anyone have any idea how to do this?