Hi,
prolly very simple question:
whats wrong with this code:
it works for the first 2 loops, then it gives me error13 - type mismatch.![]()
... For Each cell In Range("B8", "B" & lstRow) If InStr(1, cell, "Absence") > 0 Then If rAbsence = 0 Then Set rAbsence = cell Else Set rAbsence = Union(rAbsence, cell) End If End If rAbsence.Select Next cell ...
I can avoid the problem by doing it like this:
But I'd really like to know how to do it the proper way.![]()
if i = 1 then set rAbsence = cell i = 2 else ...
Bookmarks