I have a cbo query for the row source that selects once of each instance of ProjectID in the table tbRFIs:
SELECT DISTINCT tbRFIs.ProjectID FROM tbRFIs
I would like it to select once of each instance of the ProjectNo in the cbo. The relationship of ProjectID to ProjectNo is in another table tbProjects.
Is there a way to do this?
David
SELECT DISTINCT tbRFIs.ProjectID FROM tbRFIs
I would like it to select once of each instance of the ProjectNo in the cbo. The relationship of ProjectID to ProjectNo is in another table tbProjects.
Is there a way to do this?
David