Results 1 to 12 of 12

Find multiple "text" criteria and return as ""Yes" in Matrix

Threaded View

bertrand82 Find multiple "text" criteria... 04-27-2012, 01:46 PM
NBVC Re: Find multiple "text"... 04-27-2012, 01:49 PM
bertrand82 Re: Find multiple "text"... 04-28-2012, 01:39 PM
scottyboy218 Re: Find multiple "text"... 04-28-2012, 02:46 PM
bertrand82 Re: Find multiple "text"... 04-28-2012, 03:53 PM
scottyboy218 Re: Find multiple "text"... 04-28-2012, 04:11 PM
bertrand82 Re: Find multiple "text"... 04-28-2012, 04:15 PM
NBVC Re: Find multiple "text"... 04-29-2012, 12:31 AM
bertrand82 Re: Find multiple "text"... 04-30-2012, 03:32 AM
mmmarks Re: Find multiple "text"... 04-30-2012, 05:22 AM
bertrand82 Re: Find multiple "text"... 04-30-2012, 05:31 AM
NBVC Re: Find multiple "text"... 04-30-2012, 09:20 AM
  1. #12
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Find multiple "text" criteria and return as ""Yes" in Matrix

    Try:

    =IF(SUMPRODUCT((Data!$A$4:$A$20=C$4)*(Data!$C$4:$H$20=$B6)*(Data!$D$4:$I$20="Passed")),"Yes","No")

    adjust ranges to suit and copy down and to next column(s).... note the last condition range is offset to the right by 1 column....

    replace commas with semi-colons if needed in your version.

    Note: Also Sumproduct is not the most efficient method for ranges so large. If you can add a column that identifies which header in the Data sheet the information is in, then you can use COUNTIFS which is much more efficient. See attached columns A, F and G in the Matis sheet.

    In F4, formula is:

    =IF(COUNTIFS(Data!$A:$A,F$4,INDEX(Data!$C:$H,0,MATCH($A6,Data!$C$3:$H$3,0)),$B6,INDEX(Data!$C:$H,0,MATCH($A6,Data!$C$3:$H$3,0)+1),"Passed"),"Yes","No")
    Attached Files Attached Files

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