Problem with Union

  • Thread starter Thread starter Victor None
  • Start date Start date
If rr Is Nothing Then
Set rr = Rows(temp)
Else
Set rr = Union(rr, Rows(temp))
End If
 
Back
Top