I think this is fairly simple but I cannot seem to get it worked out.
I have a Finding Status column. If "Closed", then populate a checkbox column with an unfilled flag. If the Finding Status column is "Open," then look to see if the deadline column is less than Today(), if yes, then the checkbox should be true (solid).
I tried:
=IF([Finding Status]@row = "Finding is Closed", false, true), IF(AND(Finding Status]@row = “Finding is Open”, [Deadline]@row < Today()),true, false)
This returns unparseable. Any assistance would be welcome.