+ Reply to Thread
Results 1 to 4 of 4

IF THEN logic

  1. #1
    frogman
    Guest

    IF THEN logic

    Sample Data:
    A B C D E
    F G
    CID IID Concerns Interests Contact first timers Identifier
    TestData
    1 1 Building Fellowshi NO U65286929 a
    2 4 Tips for Meeting sp b
    1 3 Building Opportuniti NO L35069718 a


    What i want to do is:
    if column G has an "a" then count column A if it has a 1 in it
    if column G has an "b" then count column A if it has a 2 in it
    etc.

    Seprate the data as first choice and second choice.


  2. #2
    Bob Phillips
    Guest

    Re: IF THEN logic

    =SUMPRODUCT(((G2:G200="a")*(A2:A200=1))+((G2:G200="b")*(A2:A200=2)))

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "frogman" <frogman7@swbell.net> wrote in message
    news:1146229034.885085.71620@u72g2000cwu.googlegroups.com...
    > Sample Data:
    > A B C D E
    > F G
    > CID IID Concerns Interests Contact first timers Identifier
    > TestData
    > 1 1 Building Fellowshi NO U65286929 a
    > 2 4 Tips for Meeting sp b
    > 1 3 Building Opportuniti NO L35069718 a
    >
    >
    > What i want to do is:
    > if column G has an "a" then count column A if it has a 1 in it
    > if column G has an "b" then count column A if it has a 2 in it
    > etc.
    >
    > Seprate the data as first choice and second choice.
    >




  3. #3
    frogman
    Guest

    Re: IF THEN logic

    close but I didn't explain myself very well


    A B C D E F G
    CID IID Concerns Interest Contact Identifier Test
    1 1 Building Fello NO U652 a
    2 4 Tips for Meet b
    1 3 Building Oppor NO L350 a

    "a" is the first choice that people choose and "b" is the second choice
    as in order of importance. Column A has 7 different numbers and i just
    want to count the different numbers for the first and second choices.
    If cell G1 ="a" then count cell A1 if A1 = "1"
    So the end result is the count of 1s in column A if column G as an "a"
    in it.


  4. #4
    Bob Phillips
    Guest

    Re: IF THEN logic

    Then just

    SUMPRODUCT((G2:G200="a")*(A2:A200=1))

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "frogman" <frogman7@swbell.net> wrote in message
    news:1146234368.233136.302410@j73g2000cwa.googlegroups.com...
    > close but I didn't explain myself very well
    >
    >
    > A B C D E F G
    > CID IID Concerns Interest Contact Identifier Test
    > 1 1 Building Fello NO U652 a
    > 2 4 Tips for Meet b
    > 1 3 Building Oppor NO L350 a
    >
    > "a" is the first choice that people choose and "b" is the second choice
    > as in order of importance. Column A has 7 different numbers and i just
    > want to count the different numbers for the first and second choices.
    > If cell G1 ="a" then count cell A1 if A1 = "1"
    > So the end result is the count of 1s in column A if column G as an "a"
    > in it.
    >




+ 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