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
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.
tcgaines wrote:
> 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
>
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks