Looking up 2 columns and displaying 3rd column on new sheet

Closed
mikequick Posts 1 Registration date Monday July 31, 2017 Status Member Last seen July 31, 2017 - Jul 31, 2017 at 12:11 PM
 Blocked Profile - Jul 31, 2017 at 04:52 PM


I am trying to figure out how to display the color onto a second worksheet. If column a=1 AND column b=1, then I want the value of C2 displayed on a second worksheet. It will not always be BLUE. I just need whatever is in cell C2 at the time to be displayed when the criteria is met. The PRESS and PRIORITY combinations will never be duplicated. Any help would be greatly appreciated!
Related:

1 response

Blocked Profile
Jul 31, 2017 at 04:52 PM
The syntax for AND is as follows:
=AND(LogicTest1,LogicTest2)
So, if logictest1 and logictest2 is true, returns true.

Now, you can add in an IF, for:
=IF(AND(A2<A3,A2<100),A2,False)

The above code, will place the value of A2, into what cell is testing for the value, as long as A2 is less than A3, AND A2 is Less than 100.

I hope this helps you out!
0