Help

IF formula to autopopulate a date depending on multiple select

792 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Kara_Freewind
4 - Data Explorer
4 - Data Explorer

Hi there! I’m hoping to create a formula that autopopulates a due date based on whether two things are selected from a multiple select field.

Right now I’m using the following formula to make writing due dates three days before design due dates (to give time for design).

WORKDAY({Final Due Date}, -3)

However, if design is not selected, the copy due date should really be the same as the final due date.

Is there an IF formula that communicates “if design is selected, copy due date = final due date - 3 days days, but if not selected, copy due date = final due date”?

Thanks for your help!

2 Replies 2

If I understand your request correctly, and if your current WORKDAY() formula is doing what you intend it to, then I think this should be what you are looking for:

IF(
   FIND("Design", {Multi-Select Field Name}),
   WORKDAY({Final Due Date}, -3),
   {Final Due Date}
)

That worked perfectly! Thank you so much!!