Delete cells in an Excel column when rows = 0

前端 未结 4 1923
有刺的猬
有刺的猬 2020-11-28 16:19

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



        
4条回答
  •  一个人的身影
    2020-11-28 17:04

    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
    

提交回复
热议问题