Merge table together

Hello everyone,

I failed merging two tables like this:

Hx = Header

Vx= Value

 

H1 H2         and         H1 H2

V1 V2                        V3 V4

to

H1 H2

V1 V2

V3 V4

I need the full tables merged even if there are duplicates.

If I join the tables with Joiner node (Full outer join) I receive a table like this:

 

H1 H2

V1 V2

          H1 H2

          V3 V4

 

Can you solve my problem?

Best regards

wbart

 

Hi wbart,

you need the concatenate node for it.

Best regards, Iris 

1 Like

Hi Iris,

thank you very much. That's it.

Best regards

wbart