I need to remove the whole row IF column A value is empty. I have been doing it in excel and this method works best for me
.Columns("a:a").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
I need to do the same thing using vbs however, I have issues converting it to vbs
How can I convert the above line into vbs?
I looked up the xlCellTypeBlanks = 4 using F2 . But how to use the SpecialCells method ?