This is probably simple to solve.
I have two tables - sales and checklist.
Sales Table
ID - AutoNum
Date - Date
CustName - Text
SaleAmount - Currency
Checklist Table
ID - AutoNum
SaleID - Num
IntroLetter - Date
Review -Date
InstallComplete - Date
I need to create a page that shows the "pending completetion" sales.
Because the Checklist table has no data yet, the query I had returns no records (EOF - True?)
How do I write the query to return the custname where InstallComplete = ""?
I've tried
This did not return anything.
Thanks for the help
I have two tables - sales and checklist.
Sales Table
ID - AutoNum
Date - Date
CustName - Text
SaleAmount - Currency
Checklist Table
ID - AutoNum
SaleID - Num
IntroLetter - Date
Review -Date
InstallComplete - Date
I need to create a page that shows the "pending completetion" sales.
Because the Checklist table has no data yet, the query I had returns no records (EOF - True?)
How do I write the query to return the custname where InstallComplete = ""?
I've tried
Code:
SELECT sales.DateSold, sales.CustomerName
FROM checklist INNER JOIN sales ON checklist.SaleID = sales.ID
WHERE checklist.InstallComplete=""
GROUP BY sales.DateSold, sales.CustomerName
Thanks for the help