Deleting Blank rown in a column

zaska

Well-known Member
Joined
Oct 24, 2010
Messages
1,046
Hello,

Can anyone help me with a VBA code to delete Blank rows in a column.

Thanks
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Do you mean you want to delete the entire row for those rows where the cell in your unnamed column is blank? If so, what is the column, what is in the column (constants or formulas), and about how many rows maximum could your data have?
 
Upvote 0
Hi,

I have the data in ColumA in 5000 rows having few blank (Empty) rows and i want to delete them using VBA.

Thank you
 
Upvote 0
I have the data in ColumA in 5000 rows having few blank (Empty) rows and i want to delete them using VBA.
Assuming "data" means constants, and not formulas (you didn't answer that question), then give this macro a try...

Code:
Sub DeleteBlankRows()
  Columns("A").SpecialCells(xlBlanks).EntireRow.Delete
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,589
Messages
6,179,744
Members
452,940
Latest member
rootytrip

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top