I have a table with 1000+ rows in Sheet 1. In this same sheet, in a different column, say starting at D2, I'd like to evaluate the value of all the cells in column C, with a defined referenced valued in Sheet 2, cell B2. Here's the use of my IF function which produces the correct result:
=IF(C2=Sheet2!B2, "Yes", "No")
However, keeping in mind that I have a 1000+ rows in Sheet 1, when after using the above function in D2, when I hold down the CTRL key to copy this function all the way down to D1000+, the referenced cells are also increased by a factor of 1. So for instance, while D2's formula is shown as above, D3 would be, =IF(C3=Sheet2!B3, "Yes", "No"), and D4's, =IF(C4=Sheet2!B4, "Yes", "No"), so on and so forth.
What I'd like to do is, is to keep the referenced value, in my case B2 unchanged, as in =IF(C3=Sheet2!B2, "Yes", "No") or =IF(C303=Sheet2!B2, "Yes", "No").
Not sure if I've explained my situation clearly enough to decipher, but I'm hoping to find a quick way to accomplish this without having to change each cell's value so that it only references B2 and not automatically increment.
Any help/suggestion would be much appreciated. Thanks.