TL;DR: Quick guide to adding response validation in Google Forms
Here's how to add response validation to your Google Forms in 5 simple steps:
1. Select the question you want to validate on Google Forms (must be Short Answer, Paragraph, or Checkboxes)
2. Click the three dots (⋮) in the bottom-right corner of the question box
3. Select "Response validation" from the dropdown menu
4. Choose your validation type (Number, Text, Length, or Regular Expression) and set your criteria
5. Write a custom error message that tells users what they need to fix, then save
Google Forms response validation is your first line of defense against bad data. It's a powerful feature in Google Forms that ensures respondents provide the correct type of information in the right format before they can submit. Think of it as a quality control checkpoint that catches errors in real-time.
Whether you're creating a report form that needs employee ID in a specific format, a survey requiring numeric responses within specific ranges, or an application collecting phone numbers in a standard format, response validation helps you maintain data integrity from the start.
In this comprehensive guide, you'll learn everything about Google Forms response validation: response validation meaning, how to use response validation in google forms, frequently asked questions, and when you might need a more powerful alternative. By the end, you'll know exactly how to collect accurate, reliable data that you can actually use.
What is response validation in Google Forms?
Response validation is a feature that allows you to set specific rules and criteria for how respondents can answer your form questions.
When someone tries to submit an answer that doesn't meet your requirements, they'll see a custom error message and won't be able to proceed until they correct their response.

A checkbox question example with response validation added
How response validation works
- You define validation rules for a specific question (e.g., "Maximum of 2 choices can be selected")
- A respondent fills out your form and enters their answer.
- When they try to move forward or submit, Google Forms checks their answer against your rules.
- If the answer passes validation, they can continue.
- If it fails, they see your error message and must correct it.
This happens in real-time, which means respondents get immediate feedback rather than submitting incomplete or incorrect data that you'd have to follow up on later.
How to add a response validation in Google Forms
Now that you know what response validation is, let’s see how you can set it up. Below, you will find the general steps of setting up Google Form validation. After this how to section, you can find each and every type of response validation in Google Forms.
1. Select a question on Google Forms
First, open your Google Form. Then, click the "+" button to add a new question, or click on an existing question to edit it.
Important
Response validation only works with three question types: Short answer (single-line text), Paragraph (multi-line text), and Checkboxes (for limiting number of selections).
If you need to validate other question types (multiple choice, dropdown, etc.), you'll need to restructure your question or use a different form builder.

Selecting a question on Google Forms
3. Enable response validation
Click the three vertical dots (⋮) in the bottom-right corner of the question box. A dropdown menu appears with several options. Select "Response validation" from this menu.

Enabling “Response validation” in a Google Form
4. Configure validation rules
You'll now see additional fields appear below your question where you can configure validation rules. The interface shows three dropdown menus (for most validation types):
First dropdown is your validation category (Number, Text, Length, Regular expression, Email, URL, etc.)
Second dropdown is where choose your specific rule, such as Greater than X, Contains Y, maximum selection, etc. (this changes based on your first selection).
Third field: Enter your specific value or pattern
For this tutorial, we have created a time off request form and asking employee ID. Let’s say valid IDs in this company must have “ACM-” in them. So, the configuration is “Text”, “Contains”, “ACM-”. You need to change this based on your validation needs.

Setting validation rules in Google Forms
5. Enter an error message
After you go through the setting options and select the ones that work for you, the last step is to enter a custom error text. The error text appears when the participant does not meet the criteria for the specific answer and reminds them to change their answer to a suitable one. Depending on the theme of the form, you can have fun with your custom error text.

Entering custom validation error message
6. Test your Google Form validation
This step is non-negotiable. Click the eye icon (preview) at the top of your form to open it as a respondent would see it. Then:
- Try submitting a correct answer to verify it's accepted
- Try several incorrect answers to ensure validation catches them
- Check that your error message displays correctly
- Test edge cases (what happens with special characters? spaces? empty fields?)
- Test on mobile if your audience will primarily use phones
Don't skip testing. You don't want to discover validation issues after 100 people have already struggled with your form.

A Google Form preview showing a validation error
Types of response validation in Google Forms
Google Forms offers four main types of response validation, each designed for different data collection needs. Let's explore each type in detail with practical examples.
1. Text Validation
Text validation helps you ensure that text-based responses follow specific patterns or contain certain information. Here are the main text validation options:
1.1. Email address validation
The most common use case. This ensures the response follows the standard email format (text[@]domain.com). Imagine you're collecting email addresses for a newsletter signup, and you need to ensure every address is properly formatted so your email marketing tool can process them.

A question example with email address validation
1.2. URL validation
URL Validation requires responses to be valid web addresses starting with http:// or https://. Let’s say you're asking designers to submit their portfolio links, and you want to ensure they provide complete, clickable URLs.

A question example with URL validation
1.3. Contains/Doesn't contain
“Contains/Doesn't contain” checks whether the response includes or excludes specific text or words. Remember how we used this validation method for employee IDs above when we are covering how to use response validation in Google Forms.

A question example with “Contains/Doesn't contain” validation
2. Number Validation
Number validation ensures responses are numeric and fall within acceptable ranges. Options include:
2.1. Greater than / Greater than or equal to
“Greater than” validation ensures the number exceeds a minimum value. Imagine you're collecting ages for an adult-only survey and need all responses to be greater than or equal to 18. And this is just one example.

A question example with “Greater than or equal to” validation
2.2. Less than / Less than or equal to
The “Less than / Less than or equal to” validation ensures the number stays below a maximum value. In the example below, we are asking how many hours per day people exercise, and we prevent any responses over 24 hours as it’s impossible.

A question example with “Less than or equal to” validation
2.3. Equal to / Not equal to
The “Equal to” validation method requires the number to match a specific value. It’s the opposite for “Not equal to”.

A question example with “Equal to” validation
2.4. Between
The “Between” method, as its name suggests, requires the number to fall within a specific range.

A question example with “Between” validation
2.5. Number/Whole number
The “Number” simply ensures the response is a number, with no range restrictions, while the “Whole number” ensures that it is a number and a whole one. The common use cases are phone numbers, ID numbers, and so on.

A question example with “Number” validation
3. Length Validation
Length validation controls the number of characters in a response. This is particularly useful for short answer questions and standardizing any text input.
3.1. Maximum character count
Maximum character count sets an upper limit on how long the response can be. In the example below, we are asking the responder to enter a display name and set a validation rule for maximum of 20 characters.

A question example with “Maximum character count” validation
3.2. Minimum character count
Minimum character count requires responses to be at least a certain length. Imagine you're asking for detailed feedback and want to ensure respondents write at least 100 characters to get meaningful insights rather than one-word answers. Or imagine you are creating a job application form in Google Forms and ask the candidate to tell you about themselves. This is the perfect validation method.

A question example with “Minimum character count” validation
4. Regular Expression (Regex) Validation
Regular expressions are patterns used to match character combinations in text. While they sound technical, they're incredibly powerful for complex validation needs.
Common Regex patterns:
- Phone number:
^\d{3}-\d{3}-\d{4}$(matches 123-456-7890 format) - Postal code:
^\d{5}(-\d{4})?$(matches 12345 or 12345-6789) - Exact length:
^\d{6}$(Only 6 digits) - Date (MM/DD/YYYY):
^(0[1-9]|1[0-2])\/(0[1-9]|[12]\d|3[01])\/\d{4}$
When to Use Regex:
- Standard validation options don't meet your needs
- You need very specific formatting (license plates, product codes, custom IDs)
- You're collecting data that must follow industry-standard patterns
- You need to validate multiple criteria simultaneously
Pro tip
Use online regex testers like regex101.com to build and test your patterns before adding them to your form.

A question example with Regex validation
Limitations of Google Forms response validation
While response validation in Google Forms is useful for basic data quality control, it has significant limitations that you should be aware of before choosing it for your project. To visualize, we’ve made a table comparing where Google Forms validation is enough and where you might need a powerful form builder like forms.app:
Feature/Tool | Google Forms | forms.app |
Question types that allows validation | 3 types | Almost all fields |
Conditional validation | ||
Real-time validation feedback | ||
File upload validation | Limited | Advanced |
Regex validation | ||
Phone number validation | Regex only | Built-in settings |
Exact length | ||
Custom pattern | Regex only | Built-in settings |
How to add a response validation in forms.app
Adding response validation to forms.app is different than Google Forms. On forms.app, almost each question type comes with its own validation settings. For example, you can set minimum and maximum values on the number field; this field only accepts numbers. The file upload field has settings for allowing or not allowing certain file types, as well as the number of files allowed for upload.
1. Open forms.app and create your form
The first step in using the response validation feature in forms.app is to open or create a form. On forms.app, you can use the AI form generator, choose from free form templates, import from other sources, or start with a blank form.

Form creation options on forms.app
2. Select a question
Select a question and click on the gear icon on the right upper corner. forms.app has 30+ form fields and all comes with validation settings relative to their type. In this example, we are selecting a phone number field.

Selecting a question and opening its settings on forms.app
3. Add or change validation rules
To access response validation, click on the question that you want and click on the gear icon at the top right side of the question. This will open up the “Field Settings” tab. The “Field Settings” tab allows you to change the settings of the field and set up response validation conditions.

Adding validation rules to phone number field on forms.app
Pro tip
By adding a masked text field to your form, you can allow people to enter answers in a specific pattern or use advanced validation methods such as regex validation.
4. Change validation error messages
After setting validation rules, go to settings, then languages to see and change validation error messages. Here on forms.app, validation messages has its own settings page and each has a default value.

Changing validation error messages on forms.app
Bonus: The “Logic” section
One particular advanced feature in forms.app that may come in handy if you would like to take your response validation questions to the next level is the “Logic” section. This section allows you to set conditional logic to any question that you like and lets you create a certain pathway for participants who select particular answer options.
Frequently asked questions about the response validation in Google Forms
Since we have learned how to add response validation to both Google Forms and forms.app, it is now time to get to the details of the process with useful tips for Google Forms. Here are the answers to the frequently asked questions about response validation, and the process on how to add it in Google Forms.
To create a Google Form with response validation, all you have to do is create your form, add a question, and change the question type to either short answer, paragraph, or checkbox question.
Then, you must click on the three vertical dots and select “Response validation.” Then simply add validation rules, such as greater than, contains, etc., and test your form.
No. Google Forms only allows one validation per question.
No, response validation only works with three question types in Google Forms:
- Short answer (single-line text)
- Paragraph (multi-line text)
- Checkboxes (limited to validating number of selections)
To validate email addresses:
- Add a Short Answer question
- Click the three dots (⋮) at the bottom of the question
- Select "Response validation"
- In the first dropdown, select "Text"
- In the second dropdown, select "Email"
- Enter your custom error message: "Please enter a valid email address (e.g., name[@]company.com)"
- Make the question "Required"
This ensures users can only submit if they enter a properly formatted email address with @ and a domain.
Yes. Though limited, Google Forms allows you to:
- Restrict files to broad categories (Images, Videos, Documents, Spreadsheets, PDFs, Audio)
- Set a maximum number of files users can upload
- Files are subject to Google Drive storage limits
Regular expression (regex) validation allows you to define custom patterns that responses must match. It's useful for data that follows specific formats not covered by standard validation options.
No, Google Forms does not support cross-field validation. Each validation rule applies to only one field and cannot reference other fields.
Creating a conditional response is a little different than response validation. After you create your form and add your questions, you must change the question type other than the three that are mentioned above, and after toggling the “Required” setting and clicking on the three vertical dots, you must select “Go to section based on answer.”
To create a section, simply click on the question itself and click on “Add section,” which can be found on the right side of the question as two vertical rectangles. From there, you can add your sections based on answers, and the participants will be guided to a section based on their answers.
Final words
In summary, learning how to use the response validation feature is a game changer, especially in forms where the quality of the information is more important than the quantity. It allows you to automatically eliminate responses that are not fit for the theme of the form.
For basic forms requiring simple validation (email format checking, number ranges, or character counts) Google Forms provides adequate functionality at no cost. But in some cases, this may not be enough and you might need more than basic validation options, or more than basic form features. forms.app is a powerful form builder and a solid alternative to Google Forms. For better forms, you can give forms.app a try and see the difference yourself.
We hope you find this article helpful and learned how to add response validation to Google Form questions, understood the types of response validation available on Google Forms, and found answer to your questions. Have the nicest day and cleanest form responses!
Contributors
Researched & written by
- What is response validation in Google Forms?
- How to add a response validation in Google Forms
- Types of response validation in Google Forms
- Limitations of Google Forms response validation
- How to add a response validation in forms.app
- Frequently asked questions about the response validation in Google Forms
- Final words
forms.app, your free form builder
- Unlimited views
- Unlimited questions
- Unlimited notifications



