G
Guest
I have a form with a combo box [Committees] which is tied to a table with (2)
fields. [CommID] and [Committee]. I ahve a second combo box [Combo51] which
I want to list the available positions fro each committee.
I have created a table [Committee Position Table] with three fields,
[CommPositionID], [CommPosition] and [CommID]. [CommPosition] and
[CommPositionID] both list the committee position available. [CommID] lists
the corresponding committee for each position.
To get [Combo51] to show only the available positions for the committee
selected in [Committees], I have created the following statement in the Row
Source property field for [Combo51]:
SELECT [Committee Position Table].CommPosition, [Committee Position
Table].CommID FROM [Committee Position Table] WHERE (((Committee Position
Table.CommID)=Forms![Committee Update Form]!Committees)) ORDER BY [Committee
Position Table].CommPosition;
It doesn't work. Please help!
Thanks,
Walt
fields. [CommID] and [Committee]. I ahve a second combo box [Combo51] which
I want to list the available positions fro each committee.
I have created a table [Committee Position Table] with three fields,
[CommPositionID], [CommPosition] and [CommID]. [CommPosition] and
[CommPositionID] both list the committee position available. [CommID] lists
the corresponding committee for each position.
To get [Combo51] to show only the available positions for the committee
selected in [Committees], I have created the following statement in the Row
Source property field for [Combo51]:
SELECT [Committee Position Table].CommPosition, [Committee Position
Table].CommID FROM [Committee Position Table] WHERE (((Committee Position
Table.CommID)=Forms![Committee Update Form]!Committees)) ORDER BY [Committee
Position Table].CommPosition;
It doesn't work. Please help!
Thanks,
Walt