I would like for the Due Date to be left blank instead of #Error if there is no start date or SLA.
Can someone help with an additional formula that I could add to the one above?
Thank you.
I would like for the Due Date to be left blank instead of #Error if there is no start date or SLA.
Can someone help with an additional formula that I could add to the one above?
Thank you.
Best answer by aleaja
You could write this at least two ways.
1) Using ISERROR:
IF(
ISERROR(
WORKDAY(
{Start Date},
{SLA Test}
)
),
"",
WORKDAY(
{Start Date},
{SLA Test}
)
)2) Checking for values in the relevant fields:
IF(
AND(
{Start Date},
{SLA Test}
),
WORKDAY(
{Start Date},
{SLA Test}
),
""
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.