Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Join two tables

Hello evebody!

I've got a problem. I need to join two tables 'TableA' and 'TableB' on field 'FieldName'

[TableA]:

LOAD

          FieldName,

          Field1,

          Field2

FROM

[$(vXLSDataDir)\FileNameA.xlsm]

(ooxml, embedded labels, table is [NameA]);

[TableB]:

LOAD

          FieldName,

          Field3,

          Field4

FROM

[$(vXLSDataDir)\FileNameB.xlsm]

(ooxml, embedded labels, table is [NameB]);

I wrote next:

LEFT JOIN (TableA)

LOAD

          FieldName,

          Field3,

          Field4

FROM

[$(vXLSDataDir)\FileNameB.xlsm]

(ooxml, embedded labels, table is [NameB])

WHERE _________________;

What i need to write in condition that make a join this tables?

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     You don't need a condition if the field name is same.QlikView automatically join the tables based on the fieldname that is common.

Celambarasan

View solution in original post

2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     You don't need a condition if the field name is same.QlikView automatically join the tables based on the fieldname that is common.

Celambarasan

Anonymous
Not applicable
Author

Thanks