Code below finds "Data Start" in column 3 & deletes the row found in & all those above this point. Need to leave the found line & delete those above this point only. Must be getting late... Assistance appreciated.
Sub Delete_Stuff_Above_Line()
'
Dim rng As Range
Sheets("Import_Data").Select
Set rng = Columns(3).Find("Data Start", Cells(3, 3))
If Not rng Is Nothing Then
Range(Cells(1, 1), rng).EntireRow.Delete
End If
End Sub
Sub Delete_Stuff_Above_Line()
'
Dim rng As Range
Sheets("Import_Data").Select
Set rng = Columns(3).Find("Data Start", Cells(3, 3))
If Not rng Is Nothing Then
Range(Cells(1, 1), rng).EntireRow.Delete
End If
End Sub