D
Damon Grieves
Hi
I've been tearing my hair out trying to get this to work. I set up a union
query on an unbound combo box in A97
SELECT StatusID, Assigned FROM tblStatus UNION SELECT 0 as AllChoice ,
"(All)" as Bogus From tblStatus ORDER by StatusID;
StatusId is an autonumber field and the bound field and Assigned is text and
the field displayed in the combo. These are the only fields in tblStatus
I have a main query that looks to several combo boxes for parameters....
everything works fine. But I'd like to put 'All' on the pull down
combos...this is the first one. (All) appears in the combo pull down but
when chosen the query returns no records.
Am I missing something? Should there be some code in AfterUpdate like if
Me!cmbStatus.Column(0)) = 0 Then ...
and should the query criteria start with Like?
Thanks in advance for your help
I've been tearing my hair out trying to get this to work. I set up a union
query on an unbound combo box in A97
SELECT StatusID, Assigned FROM tblStatus UNION SELECT 0 as AllChoice ,
"(All)" as Bogus From tblStatus ORDER by StatusID;
StatusId is an autonumber field and the bound field and Assigned is text and
the field displayed in the combo. These are the only fields in tblStatus
I have a main query that looks to several combo boxes for parameters....
everything works fine. But I'd like to put 'All' on the pull down
combos...this is the first one. (All) appears in the combo pull down but
when chosen the query returns no records.
Am I missing something? Should there be some code in AfterUpdate like if
Me!cmbStatus.Column(0)) = 0 Then ...
and should the query criteria start with Like?
Thanks in advance for your help