G
Guest
Hello, all. Thanks in advance for any assistance you might offer.
As instructed by the various articles and posts regarding how to add a
'<All>' item to the top of combo box, I am utilizing the following union
query as the rowsource for my box:
Select '<All Bankers>' as Description, -1 as Bogus from tblPerson UNION
Select LastName , PersonID from tblPerson WHERE (([CoverageOfficer]=-1) AND
(IsNull([InactiveDate])))
ORDER BY Description;
The box populates properly. However, when I attempt to select anything
other than the <All Bankers> item, the selection reverts to the <All Bankers>
item. I've searched high and low with out success to identify a solution.
Any thoughts will be appreciated.
By the way, the PersonID field is a GUID/ReplicationID and serves as the
Primary key for tblPerson.
Thanks
As instructed by the various articles and posts regarding how to add a
'<All>' item to the top of combo box, I am utilizing the following union
query as the rowsource for my box:
Select '<All Bankers>' as Description, -1 as Bogus from tblPerson UNION
Select LastName , PersonID from tblPerson WHERE (([CoverageOfficer]=-1) AND
(IsNull([InactiveDate])))
ORDER BY Description;
The box populates properly. However, when I attempt to select anything
other than the <All Bankers> item, the selection reverts to the <All Bankers>
item. I've searched high and low with out success to identify a solution.
Any thoughts will be appreciated.
By the way, the PersonID field is a GUID/ReplicationID and serves as the
Primary key for tblPerson.
Thanks