Character String

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
 
P

PC Datasheet

If Me!NameOfTextBox = "LH" Or Me!NameOfTextBox = "L/H" Then
Me!NameOfOtherTextBox = "Left"
End If
 
W

Warwick Hunt

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

TIA
 
T

TC

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top