I have the following IF statement
If .Cells(r, "L").Value Like "Milestone*" Then If UBound(Split(.Cells(r, "L"), ",")) > 0 Then i = i + 1 ReDim v(1 To i) v(i) = pasteRowIndex End If I need to also include that this keyword is non case sensitive, but I am getting run time errors when I try.
Is there a quick solution?
Option Compare Textprior to theSub ...statement.