Hi Dirk: I too have a similar problem.....I read Allen Browne's list of why
queries are not editable and I suspect I may have too many joins or they
could be in different directions, but I'm not sure....my SQL is as follows:
SELECT tblDistStations.DistStationID, tblDistStations.StationAbbr,
tblDistStations.StationName, tblDistStations.TransLineID,
tblDistStations.CountyID, tblDistStations.DistrictID,
tblDistStations.SvcAreaID, tblDistStations.Historic,
tblDistStations.DateHistoric, tblDistStations.DateAdded,
tblDistStations.Notes, tblTransLines.[Transmission Line Name],
tblCounties.CountyName, tblDistricts.DistrictName, tblServiceAreas.SvcAreaName
FROM (((tblDistStations LEFT JOIN tblTransLines ON
tblDistStations.TransLineID = tblTransLines.TransLineID) LEFT JOIN
tblCounties ON tblDistStations.CountyID = tblCounties.CountyID) LEFT JOIN
tblDistricts ON tblDistStations.DistrictID = tblDistricts.DistrictID) LEFT
JOIN tblServiceAreas ON tblDistStations.SvcAreaID = tblServiceAreas.SvcAreaID
ORDER BY tblDistStations.StationName;
your thoughts? How can I make this editable? (or anyone else who sees
this....). I did have a simpler query on just two tables, and that worked
fine.
thank you so much! I'll keep searching on the web as well...
Karen
Dirk Goldgar said:
No, it is not true.
Those are not problematic.
That query looks fine, and I see nothing in it that would keep the query
from being updatable. Make sure that both tables have a primary key, and
that there's an index on the MatID field in both tables.
Note: if you reply to this message, I won't be able to respond for about 9
hours.
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)