Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have 2 tables loaded up in Qlikview
Client - This contains ALL clients
Communication - This contains all clients who have an email address
The one common field between the tables is ClientID.
Is there any way that I can use COUNT and Set Analysis to count the number of Client IDs that Exist in the Client table but DO NOT exist in the Communication table?
Thanks
Stu
This should work, still tinkering to put it into 1 SET statement
=count( distinct ClientID) - count( DISTINCT {$<Email={"*"}>} ClientID)
Hi,
just
- LOAD those two tables like you did before
- LOAD a small table RESIDENT [All] with a WHERE NOT EXISTS([email_adress_table_ID])
- Join that to the table where you want that flag via the client_ID
HTH
Best regards,
DataNibbler
Hi Stuart,
PFA
hope it helps
This should work, still tinkering to put it into 1 SET statement
=count( distinct ClientID) - count( DISTINCT {$<Email={"*"}>} ClientID)
works perfect - thanks
Thanks - I can see this would be of use also
Thanks - i might use this for a later iteration