I'm trying to have my 'Checkbox' column (Column B in Sheet1) to get filled in with either a TRUE or FALSE value based on two conditions
I've been trying to use vlookup but don't know how to introduce the second part of my condition to the formula :')
You can use the VLOOKUP
function and check whether the returned value is blank or not.
=ARRAYFORMULA(""<>VLOOKUP(A2:A6,Sheet2!A:B,2,0))
This formula is entered in the first row containing the checkbox; you have to remove the checkboxes below to give room to the formula to expand then you can reinsert them.