nickfatool
IS-IT--Management
I'm going crazy here, struggling with selection syntax.
I want to exclude all records whose middle names = "James" or "Bertie". That should leave me with 3 of the 5 records..
I tried
"Greg Philpott Brady" was the only record returned, what happened to "Irene Payne" and "Ron Birdseye"?
In Access I could use "OR query.MName is Null" to include those names where "MName" was never initialized.
Any clues would be helpful, if you feel like elaborating, please go ahead.
Oh, and add some personality by including your middle name if you like also.
Cheers,
Robert "MacIntyre" Dexter.
Code:
FName MName LName
----------------------------
Fred James Flinstone
Ted Bertie Beetle
Irene Payne
Greg Philpott Brady
Ron Birdseye
I tried
Code:
not ({query.MName} in ["James", "Bertie"]
In Access I could use "OR query.MName is Null" to include those names where "MName" was never initialized.
Any clues would be helpful, if you feel like elaborating, please go ahead.
Oh, and add some personality by including your middle name if you like also.
Cheers,
Robert "MacIntyre" Dexter.