Posts Tagged ‘rows’

Quickly Delete Rows In A Worksheet

Normally when you want to delete rows from a worksheet you would create a simple loop that would check if a row should be deleted or not, and then delete each row separately. This works fine as long as you have a small data set or don’t have to delete many rows. Sub DeleteRowsExample() ‘ [...]