I have the following statment in the field criteria of a query:
IIF([table1]![fielda] = "All", Is Not Null,[table1]![fielda])
What I am really after is if I have "all" in the field I am trying to match select all possibilities, if it is not "all" select the one I have selected.
the criteria I have above doesn't work. Is there a way???
It seems that if you puy another function in the true clause it doesnt read it. I can put a specific instance in but If I use <> null or is not null it doesn't recognise............
IIF([table1]![fielda] = "All", Is Not Null,[table1]![fielda])
What I am really after is if I have "all" in the field I am trying to match select all possibilities, if it is not "all" select the one I have selected.
the criteria I have above doesn't work. Is there a way???
It seems that if you puy another function in the true clause it doesnt read it. I can put a specific instance in but If I use <> null or is not null it doesn't recognise............