Hi! As the title says, how do you automatically compute for the date of departure if user has input for the no. of nights stayed and his date of arrival? Thank you.
Solved! Go to Solution.
date(decimal-date-time(${arrival_field}) + ${days_stayed})
Thanks, Jennifer! This worked!
I do it like this date(decimal-date-time(now()) - 7) to test for 7 days out.
So thinking something like
date(decimal-date-time(${CheckInDate}) + ${NumberOfNights})
Thanks, Doug! Much appreciated.