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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

resident issue

Hi,

I have a problem that´s been driving me mad.

I want to load all possible arrival dates from Table1. Then from Table2 I want to

load alla Articles that has a date that exists in the ArrivalDate table...

I tried this:

Result:

Load ArrivalDates Resident Table1;

Load Articles, Date Resident Table2 Where exists(ArrivalDates)

Any help is appeciated

Thanks in advance.

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Try with this:

Result:

Load ArrivalDates Resident Table1;

Load Articles, Date Resident Table2 Where exists(ArrivalDates, Date);

Regards,

Ricardo

View solution in original post

2 Replies
Not applicable
Author

Hi,

Try with this:

Result:

Load ArrivalDates Resident Table1;

Load Articles, Date Resident Table2 Where exists(ArrivalDates, Date);

Regards,

Ricardo

Not applicable
Author

Hi,

Another way is:

Result:

Load ArrivalDates Resident Table1;

Left Join (Result)

Load Articles, Date as ArrivalDates Resident Table2;

Drop tables Table1, Table2;

Regards,

Neha