• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

copy csv file data to book1 file

my csv file is located in C:\Users\user\Desktop
i will place the code in book1.xlsb file
 

Attachments

  • Book1.xlsb
    14.3 KB · Views: 3
  • 1.csv
    1.4 KB · Views: 8
Open the .csv file in excel and save it as a .xlsb file. Then run this VBA

Code:
Sub Macro1()
    Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub
 
Back
Top