I am working on a flow to create a renewal opportunity from a closed-won deal, however I am getting multiple instances of "Syntax error. Missing '='". I am trying to update the fields on the child/clone opportunity from the original opportunity fieldsand then add a related task to the child opp.I first built these formulas in process builder and they saved as valid, so I'm not sure why they are encountering this error as flow resources. When I try to add '=' at the beginning, I then encounter a syntax error for "Found '='".Here are the formulas:
Data type: DATE
1. ADDMONTHS(([Opportunity].CloseDate),12)
2. =IF(
ISBLANK([Opportunity].Renewal_Due_Date__c),
[Opportunity].CloseDate + 365,
[Opportunity].Renewal_Due_Date__c +365
)
3. [Opportunity].Renewal_Due_Date__c - 182.5
Data type TEXT:
1. [Opportunity].Name + " Renewal " + TEXT (YEAR([Opportunity].CloseDate)+1)
2. "Renewal Initial Touch"+ +[Opportunity].Renewal_Due_date__c+ +[Opportunity].Name
3. [Opportunity].OwnerId
Since I am encountering the error on so many I am probably missing a simple principle, but haven't been able to figure it out. Thanks in advance for the help!