Parsing, mid, left, trim or right to find specific word in string
Example: On the First worksheet in cells, A1 & A2 place these two words
A
1 Aardvark
2 Anteater
Then in the VBE paste this,
Option Explicit
Sub DoStuff()
Dim Start As Integer
Dim StringBeingSearched As String
Dim StringBeingSought As String
Dim ws As Worksheet
Dim LastRow As Long
Dim RangeToSearch As Range
Dim i As Variant
Set ws = ActiveWorkbook.Worksheets(1)
LastRow = ws.Cells(Rows.Count, 1).End(xlUp).Row
Set RangeToSearch = Range("A1:A" & LastRow)
Start = 1
StringBeingSought = "Aa"
For Each i In RangeToSearch
If InStr(Start, i, StringBeingSought) Then
MsgBox i
End If
Next
End Sub
Notice that the msgbox only returns Aardvark not anteater. The same can be
applied for any string Hope that helps.
"wccc.pctutor" wrote:
Hi All,
I was hoping to get a hint or two to find a specific word, which I'll
use to determine which worksheet to place the string in.
I would really appreciate only hints as to the process.
Thanks in advance.
Yours truly,
wccc.pctutor
|