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

Set analysis code for" getting the customer ID from the customer table by eliminating the customer ID from the sales table if they have entry in the "

 
1 Reply
stevejoyce
Specialist II
Specialist II

I assume this is customer IDs from the customer table where the customer ID is not null in sales table?

In your load script, join with a flag, then your set analysis will be straight forward:

left join (customer)

load

[customer ID]

,1 as flag_customer_hasSales

resident Sales;

 

your set anaylsis will be

count({<flag_customer_hasSales = {1} >} Measure)