Exclusão de dados usando a função 'If'

1

É possível no Excel usar a função vlookup ou if que, se os dados forem 0, essa linha deverá ser excluída? Por exemplo:

If cell B1=0 then DELETE cell b1, and if cell B1=1 then UNCHANGED
    
por deepakg 22.09.2015 / 11:44

1 resposta

0

Experimente a macro Main () :

Sub MAIN()
   Dim rng As Range, v As Variant
   Set rng = Range("B1")
   v = 0
   Call RowKiller(rng, v)
End Sub

Sub RowKiller(r As Range, v As Variant)
   If r.Value = v Then
      r.EntireRow.Delete
   End If
End Sub
    
por 22.09.2015 / 13:33