Hello,
I want to return an Investigation Target Due Date based on a record Classification
If Classification is Major or Critical, the Target Due Date is the Awareness Date + 45 Days
If the Classification ia Minor, the Target Due Date is the Awareness Date + 60 Days
Here is what I have, but it is showing as #UNPARSEABLE.
=IF(OR(Classification@row = "Major", Classification@row = "Critical"), [Awareness Date]@row + 45), IF(Classification@row = "Minor"), ([Awareness Date]@row + 60))
Please help.
Thanks