Is there a difference?
A) WHERE (IsNull(qry100. Cat_ID)=True))
--or--
B) WHERE qry100.Cat_ID Is Null
I'm thinking A is better because it is less ambiguous (?)
appreciate your thoughts on this... thx
A) WHERE (IsNull(qry100. Cat_ID)=True))
--or--
B) WHERE qry100.Cat_ID Is Null
I'm thinking A is better because it is less ambiguous (?)
appreciate your thoughts on this... thx
Comment