Character String

  • Thread starter Thread starter Warwick Hunt
  • Start date Start date
W

Warwick Hunt

Hiya All,

This is a really obvious one but I simply can't get my head round it. I
need to look at a text box and locate either LH or L/H and then if found
update another field with "Left"

TIA
 
If Me!NameOfTextBox = "LH" Or Me!NameOfTextBox = "L/H" Then
Me!NameOfOtherTextBox = "Left"
End If
 
Thanks for that, the only problem is I have other characters both before
and after the string I am looking for...

TIA
 
So if it said RHLH, you would want Left?

TC


Warwick Hunt said:
Thanks for that, the only problem is I have other characters both before
and after the string I am looking for...

TIA
 
Back
Top