+ Reply to Thread
Results 1 to 4 of 4

I need direction

  1. #1
    Reluctantputerhead
    Guest

    I need direction

    I am trying to get any rows that are true to this criteria to be identified
    somehow in Microsoft Excell 2003. This is just an example of what I need and
    would appreciate any direction to go or even to see the formula written so I
    can copy and paste it would work.

    ( Column B >1500 ) & ( Column C > 1.5 ) & ( Column E < 150,000 )

    Thanks,

    Rick Davis
    Ph# 503-774-6600
    [email protected]


  2. #2
    Dave Peterson
    Guest

    Re: I need direction

    Put this in a helper column:
    =and(b2>1500,c2>1.5,e2<150000)

    And drag down.

    Then put a header in row 1 of that column and select the column.
    data|Filter|autofilter

    Use the dropdown to show the True's (or False's).




    Reluctantputerhead wrote:
    >
    > I am trying to get any rows that are true to this criteria to be identified
    > somehow in Microsoft Excell 2003. This is just an example of what I need and
    > would appreciate any direction to go or even to see the formula written so I
    > can copy and paste it would work.
    >
    > ( Column B >1500 ) & ( Column C > 1.5 ) & ( Column E < 150,000 )
    >
    > Thanks,
    >
    > Rick Davis
    > Ph# 503-774-6600
    > [email protected]


    --

    Dave Peterson

  3. #3
    Biff
    Guest

    Re: I need direction

    Hi!

    Do you mean to apply this logic to cells in the same row?

    Like this:

    B1 > 1500 C1 > 1.5 E1 < 150,000

    If so, try this:

    =AND(B1>1500,C1>1.5,E1<150000)

    Will return TRUE or FALSE

    If you want to count how many instances there are that meet these criteria:

    =SUMPRODUCT(--(B1:B100>1500),--(C1:C100>1.5),--(E1:E100<150000))

    If wanting to count, it's better to use cells to hold the criteria:

    J1 = 1500
    J2 = 1.5
    J3 = 150000

    Then:

    =SUMPRODUCT(--(B1:B100>J1),--(C1:C100>J2),--(E1:E100<J3))

    Biff

    "Reluctantputerhead" <[email protected]> wrote in
    message news:[email protected]...
    >I am trying to get any rows that are true to this criteria to be identified
    > somehow in Microsoft Excell 2003. This is just an example of what I need
    > and
    > would appreciate any direction to go or even to see the formula written
    > so I
    > can copy and paste it would work.
    >
    > ( Column B >1500 ) & ( Column C > 1.5 ) & ( Column E < 150,000 )
    >
    > Thanks,
    >
    > Rick Davis
    > Ph# 503-774-6600
    > [email protected]
    >




  4. #4
    Reluctantputerhead
    Guest

    RE: I need direction

    Dave and Biff,

    Thanks a lot. It works perfect. Can't tell ya how long I’ve been trying to
    get this info.

    Hope I can do the same for someone else someday.

    Thanks again.

    Rick


    "Reluctantputerhead" wrote:

    > I am trying to get any rows that are true to this criteria to be identified
    > somehow in Microsoft Excell 2003. This is just an example of what I need and
    > would appreciate any direction to go or even to see the formula written so I
    > can copy and paste it would work.
    >
    > ( Column B >1500 ) & ( Column C > 1.5 ) & ( Column E < 150,000 )
    >
    > Thanks,
    >
    > Rick Davis
    > Ph# 503-774-6600
    > [email protected]
    >


+ 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