These both worked well.
Thank you so much.
One further problem. It seems that, although my array now is gathering all of the information, I'm having a type mismatch error (run-time 13) when I'm trying to use it. The error appears at the line with "Unbound(arrStrings)"
The next piece of code uses each element of the array to match against a cell.
For i = 0 To UBound(arrStrings)
Set MARKER = c1
Do While c1.Value = MARKER.Value And c1.Offset(0, 1).Value = MARKER.Offset(0, 1).Value And c1.Offset(0, 2).Value = MARKER.Offset(0, 2).Value
If Trim(MARKER.Offset(0, 13).Value) = Trim(arrStrings(i)) Then
MsgBox ("blah, blah")
End If
Set MARKER = MARKER.Offset(1, 0)
Loop
Next i
Anyone got an idea what might be causing this? Went to MSDN developer site, but the information only mentioned a service pack, which I already have.
Thanks again.
Bookmarks