Olá amigos,
Poderiam me dar uma força no comando:
Estou querendo zerar os valores que fique entre 0,01 e -0,01 ou seja todos os numeros que tenha apenas frações a partir da segunda casa zere.
abraços
ultimalinha = Cells(Cells.Rows.Count, 5).End(xlUp).Row
For Each Cell In Range("A5:A" & ultimalinha)
If Cell.Offset(0, 24) < "0,01" And Cell.Offset(0, 24) > "-0,01" Then
Cell.Offset(0, 25).Value = 0
End If
Next Cell
Postado : 15/04/2014 8:41 am