Thanks for looking at this. I realize how confuse I sound and as a beginner, teaching myself VB 5.0, I am confused and appreciate your help.<br>
<br>
I understand Ex 1 from rameses would work fine as long as NameVar does not include quotation marks. My NameVar may or may not contain quotation marks. <br>
<br>
Below is my wrong and corrected (hopefully) code where Double_Quote() is a function I wrote which searches for a single quote and pads any single quote found with a single quote. (ie If NameVar = "Bob's" Double_Quote returns "Bob''s")<br>
<br>
Wrong Ex2:<br>
rs.FindFirst ("LastName='" & Double_Quote(NameVar) & "'")<br>
<br>
Corrected Ex2:<br>
rs.FindFirst "LastName='" & Double_Quote(NameVar) & "'"<br>
<br>
<br>
<br>