Mar 9, 2007 #1 tattoo911 Programmer Mar 9, 2007 2 CA I have the following line of code. Me.RecordsetClone.FindFirst "[CustNum] = '" & Me![Combo29] & "'" How do I wrap this in an IF statement to determine if it actually found a match to what was entered in COMBO29. I tried .NoMatch but that didn't work... thanks
I have the following line of code. Me.RecordsetClone.FindFirst "[CustNum] = '" & Me![Combo29] & "'" How do I wrap this in an IF statement to determine if it actually found a match to what was entered in COMBO29. I tried .NoMatch but that didn't work... thanks
Mar 10, 2007 1 #2 RuralGuy Technical User Jun 27, 2002 446 US Are you saying that this didn't work? If Me.RecordsetClone.NoMatch Then '-- No record located Else '-- Record located End If HTH RuralGuy (RG for short) acXP winXP Pro Please respond to this forum so all may benefit Upvote 0 Downvote
Are you saying that this didn't work? If Me.RecordsetClone.NoMatch Then '-- No record located Else '-- Record located End If HTH RuralGuy (RG for short) acXP winXP Pro Please respond to this forum so all may benefit
Mar 10, 2007 #3 MichaelRed Programmer Dec 22, 1999 8,410 US do you know about the ubiquitous F1 (aka Help). FindFirst is generally recognized as a keyword. MichaelRed Upvote 0 Downvote
do you know about the ubiquitous F1 (aka Help). FindFirst is generally recognized as a keyword. MichaelRed