I know using a formula like this-
IF(
{T-Shirt Size} = "extra small",
DATETIME_FORMAT(WORKDAY({Expected Final Files}, -2), 'MM/DD/YYYY'),
IF(
{T-Shirt Size} = "small",
DATETIME_FORMAT(WORKDAY({Expected Final Files}, -6), 'MM/DD/YYYY'),
IF(
{T-Shirt Size} = "medium",
DATETIME_FORMAT(WORKDAY({Expected Final Files}, -13), 'MM/DD/YYYY'),
IF(
{T-Shirt Size} = "large",
DATETIME_FORMAT(WORKDAY({Expected Final Files}, -22), 'MM/DD/YYYY'),
IF(
{T-Shirt Size} = "extra large",
DATETIME_FORMAT(WORKDAY({Expected Final Files}, -30), 'MM/DD/YYYY'),
""
)
)
)
)
)
Gives me the date in the format I want but I would like to have it in bold and Airtable says "Your result type is not a number or a date. Formatting options are currently only available if your result type is a number or a date." I know this is a result of using DATETIME_FORMAT. I updated the formula to:
IF(
{T-Shirt Size} = "extra small",
DATEADD({Expected Final Files}, -2, 'days'),
IF(
{T-Shirt Size} = "small",
DATEADD({Expected Final Files}, -6, 'days'),
IF(
{T-Shirt Size} = "medium",
DATEADD({Expected Final Files}, -13, 'days'),
IF(
{T-Shirt Size} = "large",
DATEADD({Expected Final Files}, -22, 'days'),
IF(
{T-Shirt Size} = "extra large",
DATEADD({Expected Final Files}, -30, 'days'),
""
)
)
)
)
)
And still get the same error message from Airtable. If anyone could please advise, I would truly appreciate it. Thanks!