From: Ken on
I converted a database and it changed all single quotes to question marks. I
need to do a find and replace, but when I put in ? it thanks it's a wild
card. How do I do a find and replace to look for a question mark?
From: KARL DEWEY on
WHERE InStr([YourField],Chr(63)) >0
--
KARL DEWEY
Build a little - Test a little


"Ken" wrote:

> I converted a database and it changed all single quotes to question marks. I
> need to do a find and replace, but when I put in ? it thanks it's a wild
> card. How do I do a find and replace to look for a question mark?
From: Ken on
I have opened the table and need to enter this in the Find and Replace tool,
not a query - Thanks.

"KARL DEWEY" wrote:

> WHERE InStr([YourField],Chr(63)) >0
> --
> KARL DEWEY
> Build a little - Test a little
>
>
> "Ken" wrote:
>
> > I converted a database and it changed all single quotes to question marks. I
> > need to do a find and replace, but when I put in ? it thanks it's a wild
> > card. How do I do a find and replace to look for a question mark?
From: Douglas J. Steele on
You're far better off using an Update query than Find and Replace.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Ken" <Ken(a)discussions.microsoft.com> wrote in message
news:AE39251D-53DB-4095-8455-4E3D93013012(a)microsoft.com...
>I have opened the table and need to enter this in the Find and Replace
>tool,
> not a query - Thanks.
>
> "KARL DEWEY" wrote:
>
>> WHERE InStr([YourField],Chr(63)) >0
>> --
>> KARL DEWEY
>> Build a little - Test a little
>>
>>
>> "Ken" wrote:
>>
>> > I converted a database and it changed all single quotes to question
>> > marks. I
>> > need to do a find and replace, but when I put in ? it thanks it's a
>> > wild
>> > card. How do I do a find and replace to look for a question mark?


From: Ken on
But I need the ability to leave question marks where they are appropriate.

"Douglas J. Steele" wrote:

> You're far better off using an Update query than Find and Replace.
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no e-mails, please!)
>
>
> "Ken" <Ken(a)discussions.microsoft.com> wrote in message
> news:AE39251D-53DB-4095-8455-4E3D93013012(a)microsoft.com...
> >I have opened the table and need to enter this in the Find and Replace
> >tool,
> > not a query - Thanks.
> >
> > "KARL DEWEY" wrote:
> >
> >> WHERE InStr([YourField],Chr(63)) >0
> >> --
> >> KARL DEWEY
> >> Build a little - Test a little
> >>
> >>
> >> "Ken" wrote:
> >>
> >> > I converted a database and it changed all single quotes to question
> >> > marks. I
> >> > need to do a find and replace, but when I put in ? it thanks it's a
> >> > wild
> >> > card. How do I do a find and replace to look for a question mark?
>
>
>