I am trying to create a formula that fills in the checkbox when certain criteria are met.
For context, the formula needs to read two different cells to figure out if the checkbox needs to be filled out.
IF the 'QT Formula - DO NOT DELETE' row is less than 4, AND the 'Delivery-DO NOT DELETE' row is one of "Virtually-Hosted" or "Remote-Hosted", then I want the box to be checked. OR, if 'QT Formula - DO NOT DELETE' row is less than 30 AND the 'Delivery-DO NOT DELETE' row is one of "In-Person Hosted".
This is what I have for the first part of the formula so far... =IF(AND([QT Formula - DO NOT DELETE]@row < "4", [Delivery- DO NOT DELETE]@row = "Remote-Hosted"), 1, 0)
Can anyone help? I know this is a lot for one formula. Here is some of the dataset for reference.
QT is currently the box we are have conditionally formatted and are manually checking when conditionally formatting is met. Thank you!