Good day everyone,
I've seen a lot of posts about changing a symbol based on the date, but none for the other way around. In my use case, I have a Priority symbol that is being filled in on a form. I need to create a due date based on the Priority chosen and the date the form was entered.
I was able to build that initial formula with no problem.
=IF(Priority@row = "High", [Date of Input]@row, IF(Priority@row = "Medium", [Date of Input]@row + 3, IF(Priority@row = "Low", [Date of Input]@row + 5)))
Where I am getting tripped up is adding in the WORKDAY function as I only want the due date to be on work days. This includes if a "High" priority request happens to be entered on a weekend. I tried the following but am getting an INCORRECT ARGUMENT error.
=IF(Priority@row = "High", WORKDAY([Date of Input]@row), IF(Priority@row = "Medium", WORKDAY([Date of Input]@row + 3), IF(Priority@row = "Low", WORKDAY([Date of Input]@row + 5))))
Thank you in advance for any help!
~Jaime