I'm not the best at the complicated formulas and need some help. I have 3 columns in play here. Submission Type (single select), Submitted date (automation added), and Due date (Date Field). If the requestor selects "Standard" in the Submission Type field, then I want the due date to be 30 days after the submission date. If they choose something else, then I don't want the calculation to run. I would like the user to enter the requested date. (I will be using a form for requestor input.)
This is my latest attempt
=IF([Submission Type]@row), = "Standard",(DATE[Submitted date]@row )+ 30))
Obviously wrong since I get an "unparsable" error message.
Could someone help me please?