Sumeluar
Board Regular
- Joined
- Jun 21, 2006
- Messages
- 245
Good day to all gurus out there, I have a find code and I want it to skip the words like search, category, Go to, etc.
Can this be simplified?
Regards!
Sumeluar
Can this be simplified?
Code:
If myText = "Search" Then GoTo Litz
If myText = "search" Then GoTo Litz
If myText = "category" Then GoTo Litz
If myText = "Category" Then GoTo Litz
If myText = "Go" Then GoTo Litz
If myText = "go" Then GoTo Litz
If myText = "Go to" Then GoTo Litz
If myText = "go to" Then GoTo Litz
Regards!
Sumeluar