Your code has an error - DATEADD() takes 3 parameters, you’re currently only using two. The third paraemter is the time unit, which you currently have in a SUM function (not sure why you’re using that).
If SUM was mistakenly added, then this code will run fine:
DATEADD({1st Sow Date},{Min Germ Days},‘Days’)
Here’s how DATEADD works:
DATEADD(
some date that you'll be operating on,
the number of time units you'd like to add to that date,
the time unit type (such as days, months or years)
)
I’d recommend while working on your code, you write it out with indentations like I have above. It’ll help you understand what you’re writing/avoid errors. Just make sure to take out the indentations etc. before trying to run the code.
Your code has an error - DATEADD() takes 3 parameters, you’re currently only using two. The third paraemter is the time unit, which you currently have in a SUM function (not sure why you’re using that).
If SUM was mistakenly added, then this code will run fine:
DATEADD({1st Sow Date},{Min Germ Days},‘Days’)
Here’s how DATEADD works:
DATEADD(
some date that you'll be operating on,
the number of time units you'd like to add to that date,
the time unit type (such as days, months or years)
)
I’d recommend while working on your code, you write it out with indentations like I have above. It’ll help you understand what you’re writing/avoid errors. Just make sure to take out the indentations etc. before trying to run the code.
Thank you
That was the original code I used but it still wouldn’t work on the lookup field but works fine by making the field a rollup.
That is the code I am now using.
Love the way you layed out how the formula works… That has made it easier to. Understand.