+ Reply to Thread
Results 1 to 22 of 22

Formula to lookup Multiple Column Text and then Count Result

  1. #1
    Registered User
    Join Date
    08-21-2005
    MS-Off Ver
    2013
    Posts
    23

    Formula to lookup Multiple Column Text and then Count Result

    Hi,

    I am trying to figure out this problem and I hope you can help me out.

    I have 2 columns in Sheet1, column E is called "Colors" and column f is called "Model"

    I want the formula result to be in sheet 2, cell A1

    For example, The formula will look for "Legend Lime" in the column e and "GT" in column F and place the all the Legend Lime GT's in Sheet 2, Cell A1, as a number (quantity)

    Then in Sheet 2, Cell A2, the Legend Lime V6's and so on
    Example
    Column E (Colors)
    z Unknown
    Redfire
    Legend Lime
    Mineral Grey
    Sonic Blue
    Black
    Black
    Redfire
    Legend Lime
    Mineral Grey
    Black


    Column F (Model)
    GT
    GT
    V6
    GT
    V6
    GT
    Roush
    GT
    GT

    Thank You for any assistance that you can provide!
    Last edited by ShelbyMan; 08-21-2005 at 11:14 AM. Reason: Spelling

  2. #2
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  3. #3
    Registered User
    Join Date
    08-21-2005
    MS-Off Ver
    2013
    Posts
    23
    Thank You Chris!

    Worked like a charm....

    I very much appreciate you help

  4. #4
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  5. #5
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  6. #6
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  7. #7
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  8. #8
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  9. #9
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  10. #10
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  11. #11
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  12. #12
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  13. #13
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  14. #14
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  15. #15
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  16. #16
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  17. #17
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  18. #18
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  19. #19
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  20. #20
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  21. #21
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


  22. #22
    Blue Hornet
    Guest

    Re: Formula to lookup Multiple Column Text and then Count Result

    This is what SUMPRODUCT is for.

    On Sheet2, A1, the formula would be:
    =SUMPRODUCT((( Sheet1!$E$1:$E$10) = "Legend Lime") * ((
    Sheet1!$F$1:$F$10) = "GT"))

    Of course, it's much more convenient for the "Legend Lime" and "GT" to
    be cell references, so the formula can be copied down a number of rows,
    etc. But I think you get the idea.

    Chris


+ 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