G
Guest
Hello, i have a form that pulls current open projects from each selected
users by using these three criterias:
- user name
- fiscal year
- quarter
Each of these are combo boxes and are cascading lists, dependant on the
field before it.
What i want to do is:
Have a 4th field titled "projects" be a list box that pulls all projects
that matches the three criterias selected above. I have some coding for this
already, but keep getting an error that says something along the lines of the
query being too complicated:
SELECT A.ProjectName, A.*
FROM tbl_project AS A
WHERE (((A.OwnerID)=forms!projectStatus!OwnerIDbox)) And
((A.FiscalYearID)=forms!projectStatus!FiscalYearbox) And
((A.QuarterID)=forms!projectStatus!quarterbox);
Can anyone suggest a solution or provide some assistance? THanks very much.
users by using these three criterias:
- user name
- fiscal year
- quarter
Each of these are combo boxes and are cascading lists, dependant on the
field before it.
What i want to do is:
Have a 4th field titled "projects" be a list box that pulls all projects
that matches the three criterias selected above. I have some coding for this
already, but keep getting an error that says something along the lines of the
query being too complicated:
SELECT A.ProjectName, A.*
FROM tbl_project AS A
WHERE (((A.OwnerID)=forms!projectStatus!OwnerIDbox)) And
((A.FiscalYearID)=forms!projectStatus!FiscalYearbox) And
((A.QuarterID)=forms!projectStatus!quarterbox);
Can anyone suggest a solution or provide some assistance? THanks very much.