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
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.