SOLVED!
Hi all,
I need to combine results from two different forms. So I created a union query but it only returns the results of one of the tables.
Here's what I did:
I made a query for lead discussions with COIs
- form: Lead Activity Report
- fields: date of last contact, COI and comments - COI
I then made a qury for general discussions with COIs
- form: COI Discussion Form
- fields: date, COI and general comments
Fianlly, I created the union query in SQL view. See below.
SELECT [Lead Activity Report].[Date of last contact], [Lead Activity Report].COI, [Lead Activity Report].[Comments - COI]
FROM [Lead Activity Report]
UNION ALL
SELECT [COI Discussion Form].Date, [COI Discussion Form].COI, [COI Discussion Form].[Discussion points]
FROM [COI Discussion Form];
What did I do wrong? Your help is appreciated!
Thanks.
P.S. my dbase is attached