Hello, I've been trying to figure out how to do this and need some help. I have two sheets:
I want to make the checkbox true when:
- case ID FF matches a case ID SE
- AND if the caseID SE has the date column filled in (anything except blank)
- if the date column is a blank, then the checkbox should be unchecked
So far I can generate a formula asking to search for a matching caseID between both sheets.
=IF(COUNTIF({Case ID SE}, [Case ID FF]@row) > 0, 1, 0)
I tried adding on an AND to the end of the formula but it returns as unparseable.
Any help is appreciated, thanks!