I am driving myself crazy because I know this should work so I figured I would let someone else see if they noticed what I am doing wrong. I have a table that has a Recurring column, a Date Done and Due Date. I am using the following formula to create the Due Dates for the tasks.
SwitchIf(thisRow.Recurring="Monthly"thisRow.[Date Done]+Days(30),Recurring=“Quarterly” thisRow.[Date Done]+Days(90),Recurring=“Yearly” thisRow.[Date Done]+Days(365)) but no matter how I phrase it, it will not work.
But, if I add quarterly, yearly, weekly etc, it wont work and shows unexpected value error.
My goal is to have a column that only shows the Next Due Date which would be the Due Date (hidden because it’s filled in when they select complete in the task status) and the time added depending on recurrence.