I am trying to create a formula to pull a date into the Future Date column based on the report frequency and due date entered.
=IF([Report Frequency]@row = "Yearly", DATE(YEAR([Due Date]@row) + 1, MONTH([Due Date]@row), DAY([Due Date]@row)), "")
Above is what I entered, but it is throwing an invalid column value error. Can someone help?