I have a Combo Box with (3) Fields:
SELECT [GP Schedule].[EVM/VM], [GP Schedule].BEID, [GP Schedule].BusinessEntityName
FROM [GP Schedule]
WHERE ((([GP Schedule].[EVM/VM]) Is Not Null))
ORDER BY [GP Schedule].[EVM/VM];
I have it setup and bound to Column 2 - which is the BEID. When I select the items it won't change on my form. If I setup the combo box bound to column 1, it filters only by the EVM Name and not by the EVM and by the BE ID so that is why I was only trying to set it up to filter by BEID in my form. Any suggestions please?
SELECT [GP Schedule].[EVM/VM], [GP Schedule].BEID, [GP Schedule].BusinessEntityName
FROM [GP Schedule]
WHERE ((([GP Schedule].[EVM/VM]) Is Not Null))
ORDER BY [GP Schedule].[EVM/VM];
I have it setup and bound to Column 2 - which is the BEID. When I select the items it won't change on my form. If I setup the combo box bound to column 1, it filters only by the EVM Name and not by the EVM and by the BE ID so that is why I was only trying to set it up to filter by BEID in my form. Any suggestions please?