Hi all
I am trying to write a query to check for Middle initials in the first_name field. [MS Access 2003]
For Example If I have "David A", "John D", "Eddie" as the records
I want to get "David A", and "John D" because they have midle initial.
Here is what I have:
SELECT [loeh-new].FIRST, [loeh-new].LAST
FROM [loeh-new]
WHERE (((Mid(Trim([First]),Len(Trim([First]))-1,1))=""))
ORDER BY [loeh-new].FIRST;
When I run this query I get "Invalid Procedure Call"
What Am I doing wrong here?
Thanks
Ed
I am trying to write a query to check for Middle initials in the first_name field. [MS Access 2003]
For Example If I have "David A", "John D", "Eddie" as the records
I want to get "David A", and "John D" because they have midle initial.
Here is what I have:
SELECT [loeh-new].FIRST, [loeh-new].LAST
FROM [loeh-new]
WHERE (((Mid(Trim([First]),Len(Trim([First]))-1,1))=""))
ORDER BY [loeh-new].FIRST;
When I run this query I get "Invalid Procedure Call"
What Am I doing wrong here?
Thanks
Ed