You could use a macro stored in an Excel workbook. . . .you can't store macros in a CSV file.
You would have both files open with CSV file active then run the macro from the VB Editor or a button on the QAT
Will delete all rows in the CSV file in the selected column.
Public Sub DeleteRowOnCell()
'delete any row that has a blank in selected column(s)
'select column header, not just a cell
Set coltocheck = Application.InputBox(prompt:= _
"Select A Column", Type:=8)
On Error Resume Next
coltocheck.SpecialCells(xlCellTypeBlanks).entirerow.Delete
End Sub
Gord