G
Guest
I have tried to follow the advice of Dev Ashish with other info recently in
this site to add (All) to my combo box. No luck yet, I think because of the
way the combo's RowSource is set up.
The cboB's Row Source is determined by the AfterUpdate() event of another
combo,cboA, with code like....
Me!cboB.RowSource = "SELECT [qryAB]. FROM [qryAB]
WHERE <= " & Me!cboA.Column(3) & ";"
Me!cboB.Value = [cboB].[ItemData](0)
typically, the values in the combo might be 1,2,3,4,5 with the combo
initially showing 1
I want the values to be (All),1,2,3,4,5 with the combo initially showing
(All)
It seems this can be done with a UNION in the above code, but i can't seem
to get the syntax correct. Any help is greatly appreciated.
this site to add (All) to my combo box. No luck yet, I think because of the
way the combo's RowSource is set up.
The cboB's Row Source is determined by the AfterUpdate() event of another
combo,cboA, with code like....
Me!cboB.RowSource = "SELECT [qryAB]. FROM [qryAB]
WHERE <= " & Me!cboA.Column(3) & ";"
Me!cboB.Value = [cboB].[ItemData](0)
typically, the values in the combo might be 1,2,3,4,5 with the combo
initially showing 1
I want the values to be (All),1,2,3,4,5 with the combo initially showing
(All)
It seems this can be done with a UNION in the above code, but i can't seem
to get the syntax correct. Any help is greatly appreciated.