I've created a formula like this:
When I hit run I know I won't get a result because the account number is not populated, but the error message shows this:
The expires when field is not populating with my date, does anyone have any ideas why?
Thanks.
2 个回答
Date method has following parameters:
DATE(year,month,day)
You are passing year,day,month
Please change Order of day and monthIt should be
DATE(YEAR({!$Flow.CurrentDate}),12,31)