I'm new to Smartsheet and having some trouble with a formula and helper columns I am creating to display dashboard metrics differently, and to use for conditional formatting needs. The Reviews and Approvals Needed field is a dropdown with 4 approval levels and every project requires different approval combos.
I created the formula below for the Helper-CLT field that tells me if the project was approved or not based on CLT being required and status being a date:
=IF(AND(CONTAINS("CLT", [Reviews and Approvals Needed]@row:[Reviews and Approvals Needed]@row), ISDATE([Conservation Leadership Team (CLT) Review Status]@row)), "Approved", "Pending")
However, I can't figure out the order of a nested IF statement that would actually tell me: If CLT is required and CLT status is a date = "approved"; if CLT is required and CLT status is blank = "pending"; if CLT is not required, returns "N/A".
Is this possible? I keep getting unparseable as the result.