I have the following in Excel spreadsheet,

How do I delete a row based on the published within the J column = 0?
It would be better to cut the row and paste it within another sheet.. but IF you can help me with just deleting it, that would be good.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This code autofilters the rows on the activesheet where J =0, copies them to the first blank row on the second worksheet, then deletes the rows from the activesheet.
Change this line
Set ws2 = Sheets(2)to copy the rows to a different sheet, ieSet ws2 = Sheets("Your Sheet Name")orSet ws2 = Sheets(5)for the fifth sheet etc