littleIdiot
MIS
hi,
Simple one:
I have two large tables joined by a query.
I wish to EXCLUDE certain values in a specific field.
So far I have come up with the folowing:
I know this is a poor way of doing this - and I have many different values to add.
How should I do it?
I do not want to delete the data, just exclude it on this query.
Many thanks,
lil'
Simple one:
I have two large tables joined by a query.
I wish to EXCLUDE certain values in a specific field.
So far I have come up with the folowing:
Code:
AND ( ( EGIS_EXPORT.[Kind Cd] ) Not Like "ACQPD" )
AND ( ( EGIS_EXPORT.[Kind Cd] ) Not Like "ACQSUP" )
AND ( ( EGIS_EXPORT.[Kind Cd] ) Not Like "ASCCOV" )
AND ( ( EGIS_EXPORT.[Kind Cd] ) Not Like "ASCSTT" )
I know this is a poor way of doing this - and I have many different values to add.
How should I do it?
I do not want to delete the data, just exclude it on this query.
Many thanks,
lil'