Here is the SQL of the query for Courses all year
SELECT DISTINCT Courses.[Course Title], [Student in Courses].[First Name],
[Student in Courses].[Last Name], Teachers.[Teacher Name], [Student in
Courses].[Course Status], [Student in Courses].Comments
FROM Teachers INNER JOIN (Courses INNER JOIN [Student in Courses] ON
(Courses.ID = [Student in Courses].ID) AND (Courses.[Section ID] =
[Student
in Courses].[Section ID]) AND (Courses.[Teacher ID] = [Student in
Courses].[Teacher ID])) ON (Teachers.ID = Courses.[Teacher ID]) AND
(Teachers.ID = [Student in Courses].[Teacher ID])
WHERE (((Courses.[Course Title])<>"Homeroom") AND ((Teachers.[Teacher
Name])=[Enter Teacher Name:]))
ORDER BY Courses.[Course Title], [Student in Courses].[Last Name];
Thanks for any help you can offer.
Ken Snell (MVP) said:
Repost the query's SQL statement.... your previous message is no longer
in
my newsreader.
--
Ken Snell
<MS ACCESS MVP>
mrsr84 said:
I removed the word DISTINCT from the query but still cannot add text to
the
memo field. Any thoughts?
:
"Work" as meaning the query will cease to be nonupdatable because the
word
DISTINCT is in the query, yes.
No promises that there aren't other things that might not "work" < g
.
--
Ken Snell
<MS ACCESS MVP>
So if I understand correctly, remove the word DISTINCT and it will
work?
:
Rick is 100% correct.
--
Ken Snell
<MS ACCESS MVP>
mrsr84 wrote:
Here is the SQL from the query used to build the form:
SELECT DISTINCT [snip]
There you go. DISTINCT will do that.