Ok... apparently it is not updatable..
I did this just for kicks...
I changed the original Query...
SELECT [Customer Information Table].[Customer Name], tblInspSch.Phone, tblInspSch.Contact, tblInspSch.InspPONum, tblInspSch.InspPoExpires, tblInspSch.NoUnits, tblInspSch.LastInspDate, tblInspSch.NextInspDue, tblInspSch.InspSchDate, tblInspSch.Confirmed, tblInspSch.Note, tblInspSch.Comment, tblInspSch.Address, tblInspSch.City, tblInspSch.State, tblInspSch.Zipcode, tblInspType.Type, tblInspSch.Fax, tblInspSch.Ext, [Technician Table].[Technician Name] FROM (([Customer Information Table] INNER JOIN tblInspSch ON [Customer Information Table].[Customer ID] = tblInspSch.CompanyID) INNER JOIN tblInspType ON tblInspSch.InspSch = tblInspType.Id) LEFT JOIN [Technician Table] ON tblInspSch.Inspector = [Technician Table].TechID WHERE (((tblInspSch.NextInspDue)>=Date() And (tblInspSch.NextInspDue)<Date()+35) AND ((tblInspSch.Confirmed)=0)) ORDER BY tblInspSch.NextInspDue;
To this Query...
SELECT tblInspSch.Phone, tblInspSch.Contact, tblInspSch.InspPONum, tblInspSch.InspPoExpires, tblInspSch.NoUnits, tblInspSch.LastInspDate, tblInspSch.NextInspDue, tblInspSch.InspSchDate, tblInspSch.Confirmed, tblInspSch.Note, tblInspSch.Comment, tblInspSch.Address, tblInspSch.City, tblInspSch.State, tblInspSch.Zipcode, tblInspSch.Fax, tblInspSch.Ext FROM tblInspSch WHERE (((tblInspSch.NextInspDue)>=Date() And (tblInspSch.NextInspDue)<Date()+35) AND ((tblInspSch.Confirmed)=0)) ORDER BY tblInspSch.NextInspDue;
That enable me to update...
Unfortunatly I need more info than the second query is providing. How can I make the original SQL updatable?
Bill