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
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
Create website with community features
Take food orders for frequently changing menu
Autofill form
Transform emails into Google Forms responses 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
Let's take a simple example. Deliveries are available from 25th Sep till 1st October. Users can choose their preferred delivery date between these two dates. Since Google Forms does not have the option to add response validations for date questions, we cannot implement this in native Google Forms. Please follow the instructions below to implement the workaround using Formfacade.
Deliveries available from 25th Sep till 1st October. We can use the DATE function with logical AND operator to validate the date range. The syntax for the date function is DATE(year, month, day)25th September 2020 = DATE(2020,9,25)1st October 2020 = DATE(2020,10,1)AND (&&) operator can be used to combine multiple validations. The required date range validation isselected_date > DATE(2020,9,25) && selected_date <= DATE(2020,10,1)IFS function evaluates multiple conditions and returns a value that corresponds to the first true condition. We will use the IFS function to check if the selected date falls between 25th September and 1st October. If true, set the answer as "Yes". Otherwise, set the answer as "No".IFS(selected_date > DATE(2020,9,25) && selected_date <= DATE(2020,10,1),"Yes","No")Note: To enter selected_date, type @ in the calculate option and select the choose your preferred date question from the list.
Click Submit to finish.