Hello.
I have re-written my SQL query to this.
SELECT
job.Order_Date,
job.File_No,
job.Job_No,
job.Customer_ID,
job.Order_Time,
job.Contract,
job.Order_Site_Address,
job.Job_Description,
job.VAT,
job.Invoice_Printed,
job.Invoice_Printing_Date,
job.Invoice_Tax_Date,
job.Payment_Received,
job.Job_Finished,
job.CustomerRef,
job.Payment_Due_date,
job.Payment_Date,
job.Locked,
job.Note,
sites.site_address,
customer.Customer_Name
FROM job
LEFT OUTER JOIN customer ON job.Customer_Name = customer.Customer_Name
LEFT OUTER JOIN sites ON job.Customer_Name = sites.Customer_Name
ORDER BY job.Job_No DESC
But now it is duplicating the list view with 2 or sometimes 3 duplicates, but the job number is staying the same and the SQL database is only showing the one input?
Cheers
Paul.