Can I send people to a different confirmation page based on information submitted on the form?

With the help of some conditional logic, you can redirect people to a different web page depending on the information they submit.

To use conditional confirmation pages:

  1. Add a Calculation field to your form and make sure to set the Show This Field settings to For Roles > Internal.
  2. Write an if/then statement as the expression for your Calculation field, e.g = if ChoiceField = "Choice A" then "https://www.mywebsite.com/choice-a" else if ChoiceField = "Choice B" then "https://www.mywebsite.com/choice-b" else ""
  3. In the Action Settings for your Submit action, select Redirect underneath Confirmation. Then click into the URL field to insert your Calculation field using the Insert Field option.

Learn more in our creating conditional redirects blog post.