J
Jeff Rush
Hi all,
I have the following query that is designed to pull all listed fields from
tblSurvey but to exclude those records that contain one of the restricted
names.
SELECT tblSurvey.Name, tblSurvey.Source, tblSurvey.REFER_TO,
tblSurvey.ACTIVITY_NUM, tblSurvey.shuffle
FROM tblSurvey
WHERE ((Not (tblSurvey.Name)="Ryan" Or (tblSurvey.Name)="Brian" Or
(tblSurvey.Name)="Russel" Or (tblSurvey.Name)="Fredrcik" Or
(tblSurvey.Name)="Todd"));
When I run the query I still get records with Todd, Brian etc in the Name
Field.
Any suggestions or assistance would be appreciated.
Thanks in advance!!!
Jeff
I have the following query that is designed to pull all listed fields from
tblSurvey but to exclude those records that contain one of the restricted
names.
SELECT tblSurvey.Name, tblSurvey.Source, tblSurvey.REFER_TO,
tblSurvey.ACTIVITY_NUM, tblSurvey.shuffle
FROM tblSurvey
WHERE ((Not (tblSurvey.Name)="Ryan" Or (tblSurvey.Name)="Brian" Or
(tblSurvey.Name)="Russel" Or (tblSurvey.Name)="Fredrcik" Or
(tblSurvey.Name)="Todd"));
When I run the query I still get records with Todd, Brian etc in the Name
Field.
Any suggestions or assistance would be appreciated.
Thanks in advance!!!
Jeff