Community

I want to redirect the user to another URL after submission. How can we do that?

Comments (3)

Vipin

Jul 25

Log in to Formfacade > click Forms > click on the form you want to edit > Edit page will be displayed > In the Edit page, scroll down to the submit section > select "Redirect to webpage" > Enter the URL you want users to be redirected to after submission > You can then preview the form and submit a response to test the redirect.

Redirect to webpage works. Now I need Conditional Redirect based on the answer to my "Course selection" question. Please enable this option on my account.

Vipin

Sep 2

You can add an IFS function in the Redirect on submit option. Entry id for question to be used in the IFS condition Login to Formfacade > click Forms > click on the form to open it > Edit page will be displayed > In the Formfacade Edit page, scroll down to the submit section > select Custom message > In the Editor, click on the @ icon and select the relevant field from the list > entry id for that field will be included in the following format ${entry###} > copy the entry### and use it the IFS condition for redirect. Conditional redirect Log in to Formfacade > click Forms > click on the form you want to edit > Edit page will be displayed > In the Formfacade Edit page, scroll down to the submit section > select Redirect on submit > enter the IFS condition and click Save. For example: IFS(entry### == 100, "https://url1.com", entry### >= 50, "https://url2.com", "https://url3.com") IFS(entry### == "Customer", "https://url1.com", entry### == "Lead", "https://url2.com", "https://url3.com")

Add your comment