Current code has a start date based on the answer to a previous dropdown.
If they select VALUE1 - Start date is 5 business days from today.
If they select VALUE2 or VALUE 3 - Start date is 7 business days from today.
The only problem is that it doesn't exclude non-business days (weekends and Tuesdays).
If(DataCardValue24.Selected.Value = "VALUE1", DateAdd(Today(), 5, TimeUnit.Days), If(DataCardValue24.Selected.Value = "VALUE2" || DataCardValue24.Selected.Value = "VALUE3", DateAdd(Today(), 7, TimeUnit.Days), Blank()))