+ Reply to Thread
Results 1 to 14 of 14

Macro To Update < 1 to 0

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Macro To Update < 1 to 0

    I need a macro that will if the Value of the cell is < 1 update that cell to 0. I tried using the below, and it didn't work
    ub ResetAll()
    Dim myRng As Range, c As Range
    Set myRng = Sheets("Sheet1").Range("D73:D83")
    For Each c In myRng
    If c.Value > 1 AND c.Value < 0 Then
    c.Value = 0
    End If
    Next
    End Sub
    Last edited by jo15765; 02-28-2012 at 09:58 AM.

  2. #2
    Valued Forum Contributor MaczaQ's Avatar
    Join Date
    06-03-2011
    Location
    Poland
    MS-Off Ver
    Excel 2003 / XP
    Posts
    510

    Re: Macro To Update < 1 to 0

    hi
    it's non-sens
    If c.Value > 1 AND c.Value < 0 Then
    cell value could not be bigger then 1 and lower then 0 in the same time

    try to use only one of those conditions
    i.e.
    Sub ResetAll()
    Dim myRng As Range, c As Range
    Set myRng = Sheets("Sheet1").Range("D73:D83")
    For Each c In myRng
      If c.Value < 1 Then
        c.Value = 0
      End If
    Next
    End Sub
    Best Regards
    MaczaQ
    ---------------------------------------------------------------------------------------------------------------------------
    If you are satisfied with the solution(s) provided, please mark your thread as Solved
    If you are pleased with my answer consider to rate it. To thank someone who has helped you, click on the star icon below their name.
    - This way you will add him some reputation points ... thanks in advance.

  3. #3
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    Quote Originally Posted by maczaq View Post
    .
    Sub ResetAll()
    Dim myRng As Range, c As Range
    Set myRng = Sheets("Sheet1").Range("D73:D83")
    For Each c In myRng
      If c.Value < 1 Then
        c.Value = 0
      End If
    Next
    End Sub
    Thank you for the quick reply! Using the above code, will set all cell sin the Range to 0 not just the ones where there value is < 1

  4. #4
    Valued Forum Contributor MaczaQ's Avatar
    Join Date
    06-03-2011
    Location
    Poland
    MS-Off Ver
    Excel 2003 / XP
    Posts
    510

    Re: Macro To Update < 1 to 0

    attach some sample workbook.
    This code should not to change other cells - only those lower from 1

  5. #5
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    Attached is a workbook showing what problem I am running into

  6. #6
    Valued Forum Contributor MaczaQ's Avatar
    Join Date
    06-03-2011
    Location
    Poland
    MS-Off Ver
    Excel 2003 / XP
    Posts
    510

    Re: Macro To Update < 1 to 0

    1 % is equal = 1/100 so maybe you should have following condition?
      If c.Value < 0.01 Then

  7. #7
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    That is removing the formula for the values that meet that condition and updating to 0, but it is also removing the value for the numbers that do not meet that condition

  8. #8
    Valued Forum Contributor MaczaQ's Avatar
    Join Date
    06-03-2011
    Location
    Poland
    MS-Off Ver
    Excel 2003 / XP
    Posts
    510

    Re: Macro To Update < 1 to 0

    I think you asked for it - try to rebuild your question, because for now I don't know what are you realy expecting

  9. #9
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    If the value in cells D73:D83 is less than 1, I want to update the value of that cell to 0. I do not want the value of the cells that are greater than 1 to change at all. I want those cells to continue to display the data as they are.

  10. #10
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    Does it make a difference that the cells I want to update is a formula and they display a percentage?

  11. #11
    Forum Expert OnErrorGoto0's Avatar
    Join Date
    12-30-2011
    Location
    I DO NOT POST HERE ANYMORE
    MS-Off Ver
    I DO NOT POST HERE ANYMORE
    Posts
    1,655

    Re: Macro To Update < 1 to 0

    The last code posted should do what you want as 1% is 0.01. If it is not, then please post a workbook.
    Good luck.

  12. #12
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    Attachment 143465I thought I had a workbook posted, but your right I don't see it either. I am attaching a workbook now

  13. #13
    Forum Expert OnErrorGoto0's Avatar
    Join Date
    12-30-2011
    Location
    I DO NOT POST HERE ANYMORE
    MS-Off Ver
    I DO NOT POST HERE ANYMORE
    Posts
    1,655

    Re: Macro To Update < 1 to 0

    The revised code works fine. The one issue you may have is that you are not displaying decimals, so in one instance your rounded values look like 1% but are actually 0.7% so the macro clears it. If you don't want that, then use:
    If Application.Round(c.Value,2) < 0.01 Then

  14. #14
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Macro To Update < 1 to 0

    That got it!!! Thank you!

+ 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