Skip to main content
Nintex Community Menu Bar

Calculate date based on selection in a choice list

  • March 31, 2020
  • 1 reply
  • 11 views

Forum|alt.badge.img+4

I want to add a Calculated field to my Form that takes the Current Date and adds either 14 days or 28 days, based on a choice list (radio button) that looks like this:

 

Next check-in date:    2 weeks       4 weeks

 

How can I do that calculation based on which option the user picks?

 

Thanks in advance.

1 reply

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • March 31, 2020
Hi,

If your Choice control was Named "HowLong" the formula would be:
dateAddDays(Current Date,If(equals(HowLong,"2 Weeks"),14,If(equals(HowLong,"4 Weeks"),28,0)))