Skip to main content
I have a flow to create a new record which works fine.  I want to populate the expiry date as the last day of the current year.

 

I've created a formula like this:

 

Flow Designer - date formula not populating

 

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:

 

User-added image

 

The expires when field is not populating with my date, does anyone have any ideas why?

 

Thanks.
2 个回答
  1. 2017年10月27日 08:36

    Date method has following parameters:

    DATE(year,month,day)

     

    You are passing year,day,month

     

    Please change Order of day and month

     

    It should be​

    DATE(YEAR({!$Flow.CurrentDate}),12,31)

     

     
0/9000