Hi All,
Opening a form with filter
([ContactID] IN (SELECT ContactID FROM tblBuisnessAddress WHERE tblBuisnessAddress.postcode LIKE 'w1*'))
takes a crazy amount of time. (60 sec for 450 records and a few minutes for 1000's).
BUT...
([ContactID] IN (SELECT ContactID FROM tblBuisnessAddress WHERE tblBuisnessAddress.postcode NOT LIKE 'w1*'))
is instant! (Whether 1 or 1000's of records).
All that is different is the word NOT!
Am I missing something simple here? Just cant think why :banghead:
Thanking you for listening
Any advice will be much appreciated.
Opening a form with filter
([ContactID] IN (SELECT ContactID FROM tblBuisnessAddress WHERE tblBuisnessAddress.postcode LIKE 'w1*'))
takes a crazy amount of time. (60 sec for 450 records and a few minutes for 1000's).
BUT...
([ContactID] IN (SELECT ContactID FROM tblBuisnessAddress WHERE tblBuisnessAddress.postcode NOT LIKE 'w1*'))
is instant! (Whether 1 or 1000's of records).
All that is different is the word NOT!
Am I missing something simple here? Just cant think why :banghead:
Thanking you for listening

Any advice will be much appreciated.