P
Phil
I have the following query:
SELECT [Attendance].[Attended], [Attendanceform].[AttendeeFirstName],
[Attendanceform].[AttendeeLastName], [Attendance].[AttendanceDate],
[Attendanceform].[EventName], [Attendanceform].[Daynumber],
[Attendanceform].[Event ID], [AttendeeFirstName] & " " & [AttendeeLastName]
AS Name
FROM Attendance INNER JOIN Attendanceform ON
([Attendance].[ID]=[Attendanceform].[ID]) AND
([Attendance].[AttendeeID]=[Attendanceform].[AttendeeID])
WHERE ((([Attendanceform].[Daynumber])=[Forms]![Events]![DaySelect]));
This does work and get the data I want, however when I try to base a form on
this query I cannot use the form for dat entry it displays the form with data
correctly but as soon as i change the property to data entry the form goes
blank
hope you can help if you need more info please say
thanks
Phil
SELECT [Attendance].[Attended], [Attendanceform].[AttendeeFirstName],
[Attendanceform].[AttendeeLastName], [Attendance].[AttendanceDate],
[Attendanceform].[EventName], [Attendanceform].[Daynumber],
[Attendanceform].[Event ID], [AttendeeFirstName] & " " & [AttendeeLastName]
AS Name
FROM Attendance INNER JOIN Attendanceform ON
([Attendance].[ID]=[Attendanceform].[ID]) AND
([Attendance].[AttendeeID]=[Attendanceform].[AttendeeID])
WHERE ((([Attendanceform].[Daynumber])=[Forms]![Events]![DaySelect]));
This does work and get the data I want, however when I try to base a form on
this query I cannot use the form for dat entry it displays the form with data
correctly but as soon as i change the property to data entry the form goes
blank
hope you can help if you need more info please say
thanks
Phil