A sheet has task start and end dates for various product tasks.
The products and tasks are listed in a separate project task lookup sheet.
The Task End Date is calculated as x days from the Task Start Date, depending on what the task and product is. Both columns are Date columns.
This formula works, but it doesn't exclude weekends or holidays:
=[Task Start Date]@row + VLOOKUP([Product Version]@row + Task@row, {ConcatProdTaskLookup}, 2, false)
I want to add the WORKDAY function to at least skip weekends when calculating the Task Due Date.
But when I try the formula below, I get an #INCORRECT ARGUMENT SET error:
=WORKDAY([Task Start Date]@row + VLOOKUP([Product Version]@row + Task@row, {ConcatProdTaskLookup}, 2, false))
I'm sure I'm placing WORKDAY in the wrong place, but I'm also wondering that's the correct approach. I haven't even tried to figure out how the holidays fit in, but that would be a bonus.
Thank you for any advice!