Greetings
I am using this as a criteria in a query.
If the first part is false, the false condition works fine. The criteria becomes the value of the combo box.
If the first part is true, the true condition does not yeild all the records.
Any idea why true part does not come out correctly?
If I put Like "*" as criteria I do get all the records.
Thanks,
Blaine
I am using this as a criteria in a query.
Code:
IIf([Forms]![frmBooks_Select_Types]![cboSelectBooks_Type1Selection]=23, ([tblBooks].[B_BookMovieType1ID]) Like "*", [Forms]![frmBooks_Select_Types]![cboSelectBooks_Type1Selection])
If the first part is true, the true condition does not yeild all the records.
Any idea why true part does not come out correctly?
If I put Like "*" as criteria I do get all the records.
Thanks,
Blaine
Comment