Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Join load limited to primitive table values

Hi, this script creates a fourth row in table 'A' with an empty HOTEL.

A:
LOAD * INLINE [
CODE, HOTEL
1,BPT,
2,BPJ,
14,BSA];

JOIN LOAD * INLINE [
CODE, SALE
1,100,
2,125,
14,85,
10,250
];

How could I JOIN LOAD the SALES of CODE '1','2' and '14' FROM the information in second table without adding any new row?

Thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try a

LEFT JOIN LOAD

Or look into a mapping solution.

View solution in original post

1 Reply
swuehl
MVP
MVP

Try a

LEFT JOIN LOAD

Or look into a mapping solution.