AlexanderBB
Well-known Member
- Joined
- Jul 1, 2009
- Messages
- 2,114
- Office Version
- 2019
- 2010
- Platform
- Windows
I'm using Find like so and all is working well
Except where the text in Comments may have chr$160) in place of chr$(32)
This was used as a delimiter to identify parts1 and 2 in a string.
Can I modify find somehow so it will still find these instances.
textbox1 has no way of knowing.
VBA Code:
Set Found = Range(rCol).Find(What:=TextBox1.Text, lookIn:=xlComments, Lookat:=xlPart)
This was used as a delimiter to identify parts1 and 2 in a string.
Can I modify find somehow so it will still find these instances.
textbox1 has no way of knowing.