D doobybug1 Registered User. Local time Today, 03:36 Joined May 22, 2012 Messages 36 May 18, 2017 #1 How can I check if a txtField in a form is not equal to a word? I am assuming i cannot use <>
isladogs MVP / VIP Local time Today, 11:36 Joined Jan 14, 2017 Messages 18,799 May 18, 2017 #2 That depends on what exactly you mean by 'not equal to a word?' - number? - date? - text ... but gibberish e.g. sddfrt5nbmj? - all the above ... etc
That depends on what exactly you mean by 'not equal to a word?' - number? - date? - text ... but gibberish e.g. sddfrt5nbmj? - all the above ... etc
D doobybug1 Registered User. Local time Today, 03:36 Joined May 22, 2012 Messages 36 May 18, 2017 #3 I mean text ex: Me.txtField <> "Fish"
isladogs MVP / VIP Local time Today, 11:36 Joined Jan 14, 2017 Messages 18,799 May 18, 2017 #4 You've answered your own question: If Me.txtField <> "Fish" Then
D doobybug1 Registered User. Local time Today, 03:36 Joined May 22, 2012 Messages 36 May 18, 2017 #5 I wasn't sure if <> works with text that's why! Thanks