+ Reply to Thread
Results 1 to 3 of 3

IF help

Hybrid View

  1. #1
    Registered User
    Join Date
    05-06-2005
    Posts
    14

    Lightbulb IF help

    Hello, I am trying to do some IF statements within a larger macro. What I want to do is delete certain sections of a worksheet depending on whether they have quantities in them or not. I got an IF statement to work, but it carried what it needed to do if it was true whether it was true or false. Right now I have it set up to just change the background color until I know for sure it works because it helps me keep track of what is working & not working while I am building the macros. Below is an example of the IF statments that I can't get to work the way I want. This is my first attempt at them so they may be completely wrong.

    If R2 = 0 Then
    Range("A288:A334").Select
    Selection.Interior.ColorIndex = 4
    End If

    If Q2 = 0 Then
    Range("A240:A287").Select
    Selection.Interior.ColorIndex = 14
    End If

    If P2 = 0 Then
    Range("A192:A239").Select
    Selection.Interior.ColorIndex = 39
    End If

    Thanks for any help!

  2. #2
    Bob Phillips
    Guest

    Re: IF help

    Should it be?

    If Range("R2").Value = 0 Then
    Range("A288:A334").Interior.ColorIndex = 4
    End If

    If Range("Q2").Value = 0 Then
    Range("A240:A287")..Interior.ColorIndex = 14
    End If

    If Range("P2").Value = 0 Then
    Range("A192:A239")..Interior.ColorIndex = 39
    End If


    --
    HTH

    Bob Phillips

    "Paige" <Paige.1s4gqf_1121281519.7031@excelforum-nospam.com> wrote in
    message news:Paige.1s4gqf_1121281519.7031@excelforum-nospam.com...
    >
    > Hello, I am trying to do some IF statements within a larger macro.
    > What I want to do is delete certain sections of a worksheet depending
    > on whether they have quantities in them or not. I got an IF statement
    > to work, but it carried what it needed to do if it was true whether it
    > was true or false. Right now I have it set up to just change the
    > background color until I know for sure it works because it helps me
    > keep track of what is working & not working while I am building the
    > macros. Below is an example of the IF statments that I can't get to
    > work the way I want. This is my first attempt at them so they may be
    > completely wrong.
    >
    > If R2 = 0 Then
    > Range("A288:A334").Select
    > Selection.Interior.ColorIndex = 4
    > End If
    >
    > If Q2 = 0 Then
    > Range("A240:A287").Select
    > Selection.Interior.ColorIndex = 14
    > End If
    >
    > If P2 = 0 Then
    > Range("A192:A239").Select
    > Selection.Interior.ColorIndex = 39
    > End If
    >
    > Thanks for any help!
    >
    >
    > --
    > Paige
    > ------------------------------------------------------------------------
    > Paige's Profile:

    http://www.excelforum.com/member.php...o&userid=23096
    > View this thread: http://www.excelforum.com/showthread...hreadid=386913
    >




  3. #3
    Registered User
    Join Date
    05-06-2005
    Posts
    14
    THANK YOU!!!! It worked perfectly. Now I can quit pulling my hair out..

+ 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