I have a query that checks fields for the following value "=" -- its looking for not only the dash, but the quotes as well --- so
each field in the query has something like this....IIf([Field1] <> """=""" or [Field1] = "=",1,0) and then I have an update query that
will add fields with the 1 and update a field in the table with the total. The update is [Field1] + [Field2] + [Field3] ..... then i want to update a numeric field with this value. Its close, but I am NOT FILTERING the value that is the quote and the = sign....
How would i write the IIf statement to bypass the field if it has "=" or = as values.....
each field in the query has something like this....IIf([Field1] <> """=""" or [Field1] = "=",1,0) and then I have an update query that
will add fields with the 1 and update a field in the table with the total. The update is [Field1] + [Field2] + [Field3] ..... then i want to update a numeric field with this value. Its close, but I am NOT FILTERING the value that is the quote and the = sign....
How would i write the IIf statement to bypass the field if it has "=" or = as values.....