Hey guys i need some help i am almost finished with a datbase but can't seem to get the filter to work.
Here is the deal
I have 2 tables: First table is Called "IEPMeetings" and the second is called "Tasks"
Each table has an ID field that coresponds to the table, such as "MeetingID" and "TaskID"
The second Feild in the Table "IEPMeetings" is called "Meeting Tasks" and it is a lookup Field with "SELECT [IEPTasks].[TaskID] FROM IEPTasks;" as the row source
So when I open up the table it shows the drop down with just the TASk ID number displayed.
I have a form called "Meetings" that has all the fields in the form . I created a list box with ROW Source-
SELECT IEPMeetings.[Meeting Tasks].Value, IEPTasks.Task FROM IEPTasks INNER JOIN IEPMeetings ON IEPTasks.TaskID=IEPMeetings.[Meeting Tasks].Value;
This shows The Task in the list box but it shows all the Tasks that are in the IEP Tasks Table.
What I am trying to do is just show the tasks that have been assigned to the IEP Meeting.
Please help, let me know if you need more information.
I thought i could do this by using a marco "Apply Filter"
Here is the deal
I have 2 tables: First table is Called "IEPMeetings" and the second is called "Tasks"
Each table has an ID field that coresponds to the table, such as "MeetingID" and "TaskID"
The second Feild in the Table "IEPMeetings" is called "Meeting Tasks" and it is a lookup Field with "SELECT [IEPTasks].[TaskID] FROM IEPTasks;" as the row source
So when I open up the table it shows the drop down with just the TASk ID number displayed.
I have a form called "Meetings" that has all the fields in the form . I created a list box with ROW Source-
SELECT IEPMeetings.[Meeting Tasks].Value, IEPTasks.Task FROM IEPTasks INNER JOIN IEPMeetings ON IEPTasks.TaskID=IEPMeetings.[Meeting Tasks].Value;
This shows The Task in the list box but it shows all the Tasks that are in the IEP Tasks Table.
What I am trying to do is just show the tasks that have been assigned to the IEP Meeting.
Please help, let me know if you need more information.
I thought i could do this by using a marco "Apply Filter"