I have the following code that looks for values with the word "Record" in column L and then copies the row to a separate sheet.
I am getting a type-mismatch error on rows where the value #REF! occurs in column L.
What is the best way to amend the following in order to completely delete those rows and then continue the intended function?
N.B. LastRow is of 'Long' variable type
Sheets("Demand").Rows("1").Copy Sheets("Data").Range("A1")
With Sheets("Demand")
LastRow = .Range("A" & .Rows.Count).End(xlUp).Row
pasteRowIndex = 2
For r = 1 To LastRow
If LCase(.Cells(r, "L").Value) Like LCase("Record*") Then
If UBound(Split(.Cells(r, "L"), ",")) > 0 Then
i = i + 1
ReDim v(1 To i)
v(i) = pasteRowIndex
End If
Sheets("Demand").Rows(r).Copy Sheets("Data").Rows(pasteRowIndex)
pasteRowIndex = pasteRowIndex + 1
End If
Next r
End With