I want to put a minimum date in place, so user can only select T+5 days for example. I have tried putting “=DateTime.Today.AddWeekDays(5)” in the minimum value cell but doesnt work
1 Answers
Answer by Anonymous ✅ (Accepted)
Instead of setting Min Value on your date field, use a separate hidden formula field with an Expression like this…
‘<<StartDate>>’ == ‘’ || moment(‘<<StartDate>>’).isAfter(moment().add(5, ‘days’))