Query parameter: looking for acutual "

PaulA

Registered User.
Local time
Today, 16:58
Joined
Jul 17, 2001
Messages
416
Hi--

How do I query a table to bring up all records with a single double-quote mark?

I am looking for all records with a value entered in inches, such as 12" for twelve inches.

What is the syntax to query for an actual double quotation mark? I tried"

Like "*"" & "*" --which didn't work as well as
Like "*" & """ --which didn't work either.

Thanks.
 
try Like "*" & Chr$(34) & "*" in the criteria row.
 
hAD SAME PROBLEM - SOLUTION WORKED WONDERFULLY!

Thanks very much for posting this. I had the same problem and your solution worked perfectly.
 

Users who are viewing this thread

Back
Top Bottom