Easy methods to pre-fill solutions in Google Types utilizing knowledge from a Google Sheet and ship the pre-populated Google Types as personalised emails.
Prefilled Google Forms, the place among the fields within the kind are pre-populated with solutions you have already got, make the method of filling out your types simpler and quicker.
- Your contacts usually tend to fill out the shape because it takes much less time for them to finish the remaining fields.
- The shape respondents are much less prone to kind incorrect knowledge in fields, like the worker ID, which might be pre-populated.
- The types feels extra private when individuals see their title and different personalised data pre-filled within the kind.
Create Pre-filled Google Types with Google Sheets
This step-by-step video tutorial explains how one can create pre-filled Google Types with dynamic data from a Google Sheet. You’ll be able to then use Mail Merge or Document Studio to mechanically ship the prefilled types to your contacts in bulk with Gmail.
In our instance, the group maintains their worker database in a Google Spreadsheet they usually need to give staff an choice to self-update their particulars within the spreadsheet with the assistance of Google Types.
When you take a look at worker information within the Google Sheet rigorously, you’ll discover that just some particulars of the staff are lacking within the sheet. This can be a good use case for utilizing prefilled Google Types as it’s losing worker productiveness if we ship them a clean Google Type and require them to fill out each single area.
As an example, in row #2, we all know the situation and gender of Angus however his date of beginning is unavailable in our information. For row #4, the worker ID and e-mail is understood however Kiran’s different particulars are lacking.
Create the Google Type
To construct this workflow, we’ll create a Google Type with fields comparable to the columns within the supply Google Sheet. Right here’s how the ultimate kind would seem like:
Generate the Prefilled Type Hyperlink
Contained in the Google Type editor, click on the 3-dot menu select the Get pre-filled hyperlink
possibility. Right here, fill in each area with dummy knowledge that’s straightforward to acknowledge and substitute later. As soon as the fields have been stuffed, click on the Get Hyperlink
button to generate the prefilled hyperlink and duplicate it to your clipboard.
The hyperlink to the prefilled Google Type would look one thing like this.
https://docs.google.com/types/d/e/xxxx/viewform
?entry.1808207196=EMPLOYEEID&entry.1663131167=EMPLOYEENAME
&entry.1819275928=2020-06-03&entry.2071782719=Feminine
&entry.175059757=Hyderabad
It’s lengthy and sophisticated however should you take a better look, that is merely a group of title and worth pairs appended to the Google Type URL. Google Types will assign a singular id to every area within the kind and these are appended to the Type URL along with your pre-populated worth.
As an example, the Identify area in your Google Type is internally represented as entry.1663131167
within the kind URL. If we substitute the parameter worth EMPLOYEENAME
within the URL with one other worth, that may be pre-populated within the Google Type.
And that is precisely what we’ll do to create personalised prefilled hyperlinks for all of the rows in our Google Sheet.
Add Type Formulation in Google Sheet
Inside your Google Spreadsheet, create a brand new sheet and rename it Type Hyperlink. Paste the prefilled Google Type hyperlink within the first cell (A1) of this clean sheet.
Subsequent return to the Google Sheet that has the worker database and create a brand new column, say Google Type Hyperlink.
Now we have to substitute the dummy values in our prefilled hyperlink with the precise values from the rows within the sheet and this may be simply carried out with SUBSTITUTE
perform of Google Sheets.
As an example, we want substitute EMPLOYEENAME
within the prefilled hyperlink with actual names which might be in column B of the spreadsheet. Our components could be one thing like this:
=SUBSTITUTE('Type Hyperlink'!$A$1, "EMPLOYEENAME", B2)
We’ll feed the results of this components into one other SUBSTITUTE
perform to interchange one other area, say EMPLOYEEID
.
=SUBSTITUTE(
SUBSTITUTE('Type Hyperlink'!$A$1, "EMPLOYEENAME", B2),
"EMPLOYEEID", A2)
This must be repeated for each prefilled area within the Google Type.
In case your prefilled knowledge comprises house, you’ll want to wrap the outcomes into one other SUBSTITUTE perform that may substitute all occurrences of areas with the plus image.
Our ultimate prefilled hyperlink could be:
=SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE('Type Hyperlink'!$A$1, "EMPLOYEEID", A2),
"EMPLOYEENAME", B2),
"2020-05-31",E2),
"Feminine", C2),
"Hyderabad", D2),
" ", "+")
You’ll be able to take a look at the workflow utilizing this prefilled Google Form that may write your kind submission in a brand new row of this Google Sheet.
Copy-down the Google Types Method
You could use ArrayFormula
to repeat down formulation or, you probably have only some rows, choose the primary cell and drag the crosshair to the final row within the components column as proven under:
Dealing with Dates in Google Types
When you plan to pre-fill dates within the Google Type, you want rewrite your dates within the Google Sheets in a format that Google Types can acknowledge.
That is straightforward to implement. Simply choose the column in your Google sheet that comprises the dates, then go to the Format menu, select Quantity > Extra Codecs > Extra date and time format and select the YY-MM-DD
format.
Additionally see: Create PDF from Google Form Responses
Easy methods to E mail Prefilled Google Type Hyperlinks
You should use Mail Merge with Gmail to ship the prefilled types to all the e-mail addresses in a single go from the Google Sheet itself.
When composing the e-mail template for merge, choose any textual content within the e-mail physique and convert it right into a hyperlink. You’ll be able to put the title of the column – {{Google Type Hyperlink}}
because the hyperlink and this is able to get replaced along with your Google Type hyperlink.
Please watch the Mail Merge tutorial to study extra.