watercooler
Programmer
I have a query that has a text field (Component) and a boolean field (bDozer). I want the query to filter according to a text box(txtType) on a seperate form (frmWork). So, within the query I put the following criteria under the bDozer column:
iff([forms]![frmWork]![txtType]="Dozer",True,False)
If I only use the [forms]![frmWork]![txtType]="Dozer" criteria it works just fine...but I will need the capability to hinge that value on a true/false criteria as my project continues. I keep getting a warning "Undefined expression 'iff' in expression". I've read through numerous threads and can't understand why I can't use this iff statement. Can anyone help?
iff([forms]![frmWork]![txtType]="Dozer",True,False)
If I only use the [forms]![frmWork]![txtType]="Dozer" criteria it works just fine...but I will need the capability to hinge that value on a true/false criteria as my project continues. I keep getting a warning "Undefined expression 'iff' in expression". I've read through numerous threads and can't understand why I can't use this iff statement. Can anyone help?