Customize UI
Change layout, hide fields & redirect on submit
Embed in website
Embed Google Forms in your website
Assign points
Assign different points for each answer & calculate score
File upload
Upload files in Google Forms without login
Email notification
Email Google Forms response to your users & co-workers
All products
Enhance Google Forms into CRM
eSignature
Collect legally binding signature in Google Forms
Fillable PDF
Generate customized PDF from Google Forms responses
Signature workflow
Collect multiple signatures in Google Forms
Intake form
Create intake forms that accepts eSignature from patients
HIPAA form
Mask PHI fields in email & links for HIPAA compliance
Prefill & email
Prefill Google Forms & send as email to customers
Drawing
Accept drawings using Google Forms
Add legal & HIPAA compliance to Google Forms
Meal Prep Software
Meal prep software for weekly changing menu
Online Canteen
Take canteen orders for weekly changing menu
Order form
Calculate order amount in Google Forms
WhatsApp form
Take online orders from your WhatsApp contacts
Payment form
Accept payment in Google Forms
Website builder
Organize your forms like Linktree
Take food orders for frequently changing menu
Semantic email
Send email to fill Google Forms using AI
Support forum
If your answer turns aggressive, we'll help you tone it down.
Finetuning
Build your own AI model using data in Google Sheets
Extract structured data from customer conversations
In the example form (see GIF below), a user can select one of the following four options for the multiple-choice question.o Yes, works wello Yes, will write a 5-star reviewo No, need your helpo No, does not meet my needsIf the user selects "Yes, works well", the user is redirected to customer satisfaction survey formIf the user selects "Yes, will write a 5-star review", the user is redirected to the G Suite marketplaceIf the user selects "No, need your help, the user is redirected to the support pageIf the user selects "No, does not meet my needs", the user is redirected to the roadmap page
Pre-requisite: You must have installed the Formfacade add-on for Google Forms. If you haven't installed the add-on yet, you can install it from G Suite marketplace using this link. https://gsuite.google.com/marketplace/app/formfacade/743872305260
There are two ways to write conditional logic in Formfacade.#1. For developers: Use javascript if/else statement#2. For Google Sheets users: Use IFS functionFor details, refer this help article.We will use the IFS function to redirect users to different urls based on different conditions. The IFS function evaluates multiple conditions and returns a value that corresponds to the first true condition. The syntax for IFS function isIFS( condition1, url1, [condition2, url2, …] )condition1 - The first condition to be evaluated. url1 - The url to be redirected if condition1 is TRUEcondition2, url2, ... - Optional additional conditions and urls if the first one is evaluated to be false.When you enter @, you will see the list of all the fields in the form. Select the required form field. Use this id to write conditions. In our example, the id is enter566143332. We must redirect to four different urls based on four option choices. The IFS function for this would be as follows.IFS(entry566143332=="Yes, works well","https://bit.ly/formfacadecsat",entry566143332=="Yes, will write a 5-star review","https://bit.ly/gsuitelisting",entry566143332=="No, need your help","https://formfacade.com/support.html",entry566143332=="No, does not meet my needs","https://formfacade.com/roadmap.html")
Click Submit to finish.