here is my expression:
=([Panels] not Like '*IT_AMPH,*' and [Panels] not Like '*AMPH_SN,*' and [Panels] not Like '*AMPH_S,*')
can i say this instead:
= not ([Panels] Like '*IT_AMPH,*' Or [Panels] Like '*AMPH_SN,*' Or [Panels] Like '*AMPH_S,*')
are these expressions the same?
*****i need to mention that my question is not about logic it is about whether access will take this syntax*****
Yep. This is just de Morgan’s law. I had to think a bit about the effect of NULLS but in both versions if [Panels] IS NULL then the end result will be unknown.
In answer to your clarified question. Yes as well. I added a new “Yes/No” column to the Northwind Customers table called “TF” and both the following statements had the same effect.