I've been working on this one for a while and quite seem to get it.
I have a sheet ('SheetName') full 'i' number of Tag #s in Column 'A'. The Tag #s are either L-##### or LL-##### (where L/LL are specific combinations of Letters)
I am wanting to enter the 'If Statement' if the Tag #s appear in any of the other sheets ('j' number of sheets)(in B-columns with 'k' number of rows). BUT in the other sheets there may be additional characters appearing after the Tag #. I need to enter the 'If Statment' even if this occurs.
Here is the most recent If statement that I've tried... I just need to figure out what to write after 'Like'.
Any help/suggestions would be greatly appreciated,
Thanks in advance.
-Hogie
I have a sheet ('SheetName') full 'i' number of Tag #s in Column 'A'. The Tag #s are either L-##### or LL-##### (where L/LL are specific combinations of Letters)
I am wanting to enter the 'If Statement' if the Tag #s appear in any of the other sheets ('j' number of sheets)(in B-columns with 'k' number of rows). BUT in the other sheets there may be additional characters appearing after the Tag #. I need to enter the 'If Statment' even if this occurs.
Here is the most recent If statement that I've tried... I just need to figure out what to write after 'Like'.
Code:
If wkb.Worksheets(SheetName).Range("A" & i) Like (Left(wkb.Worksheets(j).Range("B" & k), 8) Or (Left(wkb.Worksheets(j).Range("B" & k), 7))) Then
Any help/suggestions would be greatly appreciated,
Thanks in advance.
-Hogie