If its any help then this is the sql query code to show you the list of records, from here you are able to output it to excel etc..
This just shows you the account number and the company fields. If you need to add the contact field then put a "," after the "c1.company," and then on the next line put c1.contact and do not put a "," at the end of the line.
I hope this helps you. Any issue let me know
Code:
SELECT distinct
C1.Accountno,
C1.company
From
Contact1 C1
WHERE
C1.AccountNo NOT IN
(Select AccountNo from Contsupp where Contact = 'E-mail Address')
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.