+ Reply to Thread
Results 1 to 3 of 3

If Cell Value < 0, Change Value to 0

  1. #1
    Registered User
    Join Date
    12-13-2005
    Posts
    9

    If Cell Value < 0, Change Value to 0

    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

  2. #2
    Registered User
    Join Date
    12-13-2005
    Posts
    9
    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

  3. #3
    Govind
    Guest

    Re: If Cell Value < 0, Change Value to 0

    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
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1