Just IsNumeric should work
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick
That's what I started with, but query editor wrapped it in quotes so the query was processing the string "IsNumeric" as the criteria.
put isnumeric([ChkNo]) in a new column on the field row
untick the show box
put true in the criteria
OUTSTANDING Ajax! In the middle of the night it occurred to me to try editing the SQL as :which worked perfectly and is exactly what you suggested I try via the design view.Code:SELECT MemID, [FirstName] & " " & [Lastname] AS Name, DOPmt, ChkNo, CYP, Selected FROM tblMembers WHERE (((Selected)="►") AND ((IsNumeric([ChkNo]))=True));
As usual, you're a winner.
Thanks,
Bill