I am trying to generate a date in one column based on an input from a drop down in another column. We have 3 complexity levels Low, Moderate, and High. Low equals 7 days from today, Moderate equals 17 days from today, and High equals 32 days from today. Below is what I have tried and it is not working.
=IF((Complexity@row = "High", TODAY(32)), (IF(Complexity@row = "LOW", TODAY(7))), (IF(Complexity@row = "Moderate", TODAY(17))))