Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenate two columns

Hello everyone,

I am trying to concatenate two columns to make one..

like

Col1          Col2

a                  b

c                  d

e                  f

I have these two columns and values and i want to concatenate these two column to make one

like


Col1

a

c

e

b

d

f



Pls help...

Thanks in advance...

1 Solution

Accepted Solutions
jagannalla
Partner - Specialist III
Partner - Specialist III

Hi,

Load Col1 from tab1;

Load Col2 as Col1 from tab1;

Thanks,

Jagan

View solution in original post

4 Replies
jagannalla
Partner - Specialist III
Partner - Specialist III

Hi,

Load Col1 from tab1;

Load Col2 as Col1 from tab1;

Thanks,

Jagan

jvishnuram
Partner - Creator III
Partner - Creator III

Hi Shivam,

Try to load each column as separate,

SAMPLE

Load * Inline [

Col1

a

b

c

];

Concatenate (SAMPLE)

Load * Inline [

Col1

d

e

f

];

Not applicable
Author

Thans alot

Not applicable
Author

Thanks a lot