Alternative to Vlookup that does not stop at first value found

后端 未结 1 1227
忘掉有多难
忘掉有多难 2021-01-27 23:12

I am trying to populate B2:D5 with \"yes\"/\"No\" ( Figure 1) based on the criteria that if I find the respective pvalue( Column A) , in the \'Test\' column in a separa

相关标签:
1条回答
  • 2021-01-27 23:32

    Use COUNTIFS()

    In B2:

    =IF(COUNTIFS(Sheet1!A:A,$A2,Shee1!B:B,B$1),"Yes","No")
    

    Then copy over and down the grid.

    Where Sheet1 is the list.

    0 讨论(0)
提交回复
热议问题