I am trying to delete all cells =0 in a column in my spreadsheet and \"summon\" the values which don\'t to the top of the column.
I am currently using
To speed things up, you probably also want to turn auto calculation off while you do the update:
Application.Calculation = xlCalculationManual
Then change it back to automatic when you are done:
Application.Calculation = xlCalculationAutomatic