If Cell Value < 0, Change Value to 0

  • Thread starter Thread starter tcgaines
  • Start date Start date
T

tcgaines

The subject says it all. I want to search a range for cell values that
are < 0 and if they are, change the value to 0. how do i do that?

thx
 
Solution:

Sub LessThanZero()
Dim cell As Range
'Change the worksheet and column values to suit your needs.
For Each cell In Range("Sheet1!A:A")
If cell.Value < 0 Then
cell.Value = 0
End If
Next
End Sub
 
Hi,

You can write an IF formula like

=IF(A1<0,0,A1)

and copy it across the range.

Regards

Govind.
 
Back
Top