Hi, I had a question about a formula to display certain dates
So we have columns for Date of Evaluation(Manually Inputted) and Date of Contact(Automatically date created)
I would like to make 1 column instead of 2 different columns for the below to display different due dates and wanted to see if it was possible.
If the Evaluation Type Column is "PQME" or "PQMER", I would like the Date to display a date 7 days after Date of Evaluation
If the Evaluation Type Column is "PQMES", I would like the Date to display a date 7 days after Date of Contact.
Currently I have this formula, but it is giving me the Unparseable error and not sure what I am doing wrong. Any help is appreciated
=IF([Evaluation type]@row = "PQME", [Records Due Date for PQME/PQMER]@row = [Date of Evaluation]@row + 7),IF(([Evaluation type]@row = "PQMER", [Records Due Date for PQME/PQMER]@row = [Date of Evaluation]@row + 7))