Not only are Google Workspaces, Google Sheets, Docs, Forms and Slide great to work in and look awesome, but the convenience of collaborating and sharing your Google Drive Files and Folders is also super useful. So much so that many course creators share their documents with their students all the time.
The problem that course creators have is that they are generally stuck with two options when sharing their Google Drive files and folders:
Set sharing to Anyone with Link can view. And hope other freeloading students don’t find and share their course material.
Manually share each student as they enrol. Which is time-consuming for the course creator and annoying for the student who needs to wait to be shared before they can get their hands on your awesome course content.
Both options are really terrible.
I reluctantly chose option one for my first Google Sheets Essentials Teachable Course and it really bothered me. I needed to find a way to share my Google Drive course content with only those students who signed up for my course.
In this tutorial, I will guide you through creating a Google Apps Script web app that receives a webhook notification when a student enrols onto one of my Teachable courses. If a student enrolled with a non-Gmail or non-Google Workspace domain email account, they will be sent an email with an attached form to add a Google-friendly email.
The fun thing is that you will experience how the whole process works, because…well…that’s how I am going to share the Google Sheets file with you when you enrol. Neat, hey?
As a part of your purchase you will also get a few other perks:
Set files or folders for ‘view’, ‘comment’ or ‘edit’ access.
Add existing students to your selected course Google Drive Files and Folders.
Get your full course list from your Teachable site right in your Sheet.
A choice to bulk set your files and folders to:
prevent downloads, copying and print.
Prevent sharing by any documents you have provided ‘edit’ permission to.
If you want to understand how it all works and build your own, read on, you can always throw a couple of coins at me and enrol to run the workflow just for fun.
Carelessly left behind Google Apps Script time triggers can be greedy little blighters that can ultimately end in a whole lot of noggin scratching when your scheduled scripts decide not to run all of a sudden. Then there is a whole lot of house cleaning to remove all those time triggers you couldn’t be bothered setting a calendar reminder to remove them when you didn’t nee them any longer.
After all, there are some pretty tight quotas for the Consumer account (90 min) and if you are doing some heaving lifting in your Google Workspace account (6 hrs), then it will add up fast. Well… maybe I am just a glutton for triggers.
In this tutorial, we will cover how to schedule weekly time triggers between a period of dates in Google Apps Script programmatically using the Clock Trigger method of the ScriptApp class. The code basically sets all the triggers up on the desired range of dates and then removes all the triggers when the time expires.
Let’s get stuck into it!
The Code
Triggers.gs
This is the main code you will copy and paste into your own project. Read the Quick Use guide for what you will need to update for your own project.
console.log("Copy and paste data to repository file.");
};
functionopenAndSend(){
// Share edit permission and send a group email to team to edit the sheet.
console.log("Share edit permission and send a group email to team to edit the sheet.");
};
functionsendDeadlineReminder(){
// Send a deadline reminder to users who have note completed the task 1 day before deadline.
console.log("Send a deadline reminder to users who have note completed the task 1 day before deadline.");
};
functionremoveEditorsFromSheet(){
//remove editors from sheet on deadline.
console.log("remove editors from sheet on deadline.")
};
Quick use guide
Here, we will quickly go through using the script to get you up and running.
The Example
In the example, we have an imaginary document that needs to be edited by our team. If you look at the ExampleFuncitons.gs file you can see our list of time trigger task for our Google Apps Script project as follows:
Refresh the Google Sheet: We possibly need to send a report and clear it out at a certain time to set it up for the next week.
Open and send an access email: We will send off an email to our team to let them know that they now have edit access for the sheet and complete their weekly task.
Send a deadline reminder: Just before the deadline, we send out a reminder to our stragglers that the deadline is due so that they can get unnecessarily offended. 🙄🐐
Remove the editors from the sheet: Once the deadline hits, we revoke edit access for our team from the sheet to maintain the integrity of the sheet before we send off our report.
Before you add your trigger times
A note on time zones
Just hold up one second. Before you add your trigger times, I recommend that you double-check the time zone assigned to your project.
Didn’t know that was a thing? No worries. Check out this short video on how to get that done fast:
I recommend creating a separate *.gs file to add in the timeTrigger object from lines 35-145. It just gets it out of the way of your awesome project codes.
The runsies() function is just an example function. If all you want to do is add your triggers days and dates in and hit run, then it is fine. But if you want to programmatically draw your start and end trigger dates and weekly trigger times from somewhere else then all you need to add into your own function is the TIME_TRIGGER objects and then run:
timeTrigger.deploy(TIME_TRIGGER);
Adding your times and date window
TIME_TRIGGER object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//List of time trigger data that we want to schedule.
constTIME_TRIGGER={
// Set [year, month, day]
startDate:[2021,3,8],// or "now" if it is immeidate.
endDate:[2021,3,10],
setTimes:[
// [function, weekday, hour]
// e.g. ["runFunciton", "Sunday",20]
["refreshSheet","Monday",7],
["openAndSend","Monday",12],
["sendDeadlineReminder","Wednesday",7],
["removeEditorsFromSheet","Wednesday",15],
//You can add more triggers.
]
};
There are two parts to this object. First, set the start and end date that you want to run your weekly triggers. Lines 4 & 5
If you want to start your triggers straight away, then you can enter “now”, otherwise enter in a date. You will get an error message if your date is before the current date.
The end date removes all the time triggers in your project. So if you have other triggers, you will need to make some changes to the timeTrigger object (Maybe register each trigger id in PropertiesSerivce).
To add your dates, start with the year, month and date. Note that unlike the weirdness of the Javascript Date() constructor, I have made the month the common number. So a 3 will be March (not April in the Date() constructor).
Next, add the weekly triggers that you want to run each week for this project. Lines 21-28
You can add in as many as you want here. In the example, I have added four. Each piece of weekly trigger data is contained in an array:
[function, weekday, hour]
function: The function that you want to be triggered.
weekday: Full word days of the week from Monday to Sunday.
hour: The hour of the day that you want to run the trigger.
Deploying and scheduling the time trigger
To schedule, your triggers run the timeTrigger.deploy(TIME_TRIGGER); function.
If you want to test things before your first deploy, you can check the triggers are all set up you can check the triggers in your Apps Script menu (1).
To check the times of your trigger, you can click on the vertical ellipses beside each trigger (2).
You can delete all the triggers in your project and start again with:
timeTrigger.remove();
That’s pretty much all you need to know to get this script up and running in your project.
If you want to learn more about how the timeTrigger object was written and how to code Clock Triggers, jump down into the next header.
Need help with Google Workspace development?
Go something to solve bigger than Chat GPT?
I can help you with all of your Google Workspace development needs, from custom app development to integrations and security. I have a proven track record of success in helping businesses of all sizes get the most out of Google Workspace.
* @param {Object} triggerData - a complext object containing star
* and end dates and times in the week to set.
*/
deploy:(triggerData)=>{
timeTrigger.setEndDateTrigger(triggerData);
//Check if start date is now
if(triggerData.startDate.toLowerCase==="now"){
timeTrigger.setTrigger(triggerData.setTimes)
return;
}
triggerData.startDate[1]-=1;// Minus 1 to get month index
let startDate=newDate(...triggerData.startDate)
let today=newDate();
today.setHours(0,0,0,0)
//Check if date is today.
if(startDate.getTime()==today.getTime()){
timeTrigger.setTrigger(triggerData.setTimes)
return;
}
//If in the future will schedule a date to start the weekly triggers.
else{
ScriptApp.newTrigger("timeTrigger.setTrigger")
.timeBased()
.at(startDate)
.create();
};
},
...
The timeTrigger.deploy() function is the main run function and takes the object of start and end dates and weekly triggers that we assigned in the TIME_TRIGGER object in the runsies() function.
Its first task is to set the date the weekly triggers need to be removed. This is done with the setEndDateTrigger(triggerData) function that we will discuss in a minute.
Check if start dat is now
Next, we need to check the input for the triggerData.startDate. If the user selected “Now”, then we immediately run timeTrigger.setTrigger() and complete the script. Lines 12-16
Check if start date is today
Alternatively, if the user puts in the current day’s date then we need to run the timeTrigger.setTrigger() straight away too. First, we need to transform the users triggerData.StartDate data into a readable date. We do this using the Javascript new Date() constructor that has the option to take the format; year, month, date:
new Date(year, month index, day of month)
Because the month index for Date() starts at 0 for January and ends at 11 for December, so we need to subtract 1 from the users month input before creating the date. Line 18
I used a Javascript spread operator (…array) to add in all the values of triggerData.StartDate which in our example are:
[2021, 3, 8]
So:
new Date(...triggerData.startDate)
Is actually, this:
new Date(2021, 3, 8)
Which is much tidier than:
new date(triggerData.startDate[0], triggerData.startDate[1], triggerData.startDate[2])
I’m really digging the spread operator lately.
Next, we need to compare the current date with the triggerData.startDate. We can do this by converting the two dates to times using the getTime() method. This transforms the dates into long number values that can be compared. Line 25
Before we do this though we kinda need to clear the current time out of the current data otherwise we won’t be able to compare things properly (line 26). When we run new Date() to create the today variable it will give us the date and the current time all the way down to milliseconds. However when we created the date for our scheduled date we only added the year, month and day so the time will be set to midnight.
Let’s update today date by changing the time of the day to midnight with:
today.setHours(0, 0, 0, 0);
If start date is in the future, schedule it!
Our final condition is if the user has scheduled a date in the future. We don’t want to clutter up their trigger quota unnecessarily so we need to postpone our triggers. To do this we ironically, need to create a clock trigger that runs only once on the date we want our weekly triggers to start.
To programmatically set a time trigger in Google Apps Script we call the newTrigger method in the ScriptApp class. Line 34
The newTrigger method takes our assigned function as an argument. This is the function we want to run when our trigger goes off. For us, this is the timeTrigger.setTrigger() function that will build the weekly triggers.
Your next step is to decide what type of trigger you want. In our project, we want a timeBased() trigger. Line 35
Selecting timeBased() takes us to the Clock Trigger builder, where we can choose from a bunch of settings. For us, all we want to set is a start date so we chose the at(date) method which takes a constructed Javascript date. Here we throw in the startDate variable we built on line 19.
Once we have all our trigger data inputted, we need to create() our trigger.
timeTrigger.setEndDateTrigger()
timeTrigger.setEndDateTrigger()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
...
/**
* Sets a trigger to deletes the assigned weekly triggers.
*
* @param {Object} triggerData - a complext object containing star
* and end dates and times in the week to set.
*/
setEndDateTrigger:(triggerData)=>{
//Set last day to remove triggers
triggerData.endDate[1]-=1;// Minus 1 to get month index
triggerData.endDate[2]+=1;// Move to following day
let endDate=newDate(...triggerData.endDate);
ScriptApp.newTrigger("timeTrigger.remove")
.timeBased()
.at(endDate)
.create()
},
...
The timeTrigger.setEndDateTrigger() function takes the triggerData as an argument. From that, it extracts the endDate array of year month and day.
Just like in timeTrigger.deploy(), we need to take one away from the month to get the proper value for Javascript. Then we want to remove our weekly triggers basically on the midnight of the following day after the user’s recorded end date. Lines 11-12
Why? Well, the end date usually means that it is a date the final trigger will occur on. We don’t want to remove our trigger before that date though or we will mess up our user’s process.
Once we have created our date we go through the same process as scheduling a start date in the future like we did in timeTrigger.deploy().
timeTrigger.setTrigger()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
...
/**
* Sets a weekly triggers for each setTimes item.
*
* @param {Array} times - 2d array each row containing trigger data
* such as: [nextFunct, weekday, hour, minute]
*/
setTrigger:(times)=>{
times.forEach((time)=>{
let[nextFunct,weekday,hour]=time
constwkDay={
Sunday:ScriptApp.WeekDay.SUNDAY,
Monday:ScriptApp.WeekDay.MONDAY,
Tuesday:ScriptApp.WeekDay.TUESDAY,
Wednesday:ScriptApp.WeekDay.WEDNESDAY,
Thursday:ScriptApp.WeekDay.THURSDAY,
Friday:ScriptApp.WeekDay.FRIDAY,
Saturday:ScriptApp.WeekDay.SATURDAY
};
ScriptApp.newTrigger(nextFunct)
.timeBased()
.onWeekDay(wkDay[weekday])
.atHour(hour)
.create()
})
},
...
This trigger is initialised from either the timeTrigger.deploy() straight away if the start date is the current date or is scheduled for deployment at a later date.
The timeTrigger.setTrigger() takes the 2d array of all the weekly triggers assigned by the user. In our example, that was this:
1
2
3
4
5
6
7
8
9
10
11
...
setTimes:[
// [function, weekday, hour]
// e.g. ["runFunciton", "Sunday", 18]
["refreshSheet","Monday",7],
["openAndSend","Monday",12],
["sendDeadlineReminder","Wednesday",7],
["removeEditorsFromSheet","Wednesday",15],
//You can add more triggers.
]
...
First, it loops through each set of trigger input data with a forEach loop.
Assigning variables using destructuring
I want to assign a variable for each item in the currently iterated array so that I can work with it in building the trigger. Here I used a destructuring assignment now available in Google Apps Script V8 runtime. Line 11
If you are unfamiliar with the destructuring assignment, you can basically set an array of variables – in our case – on the left and assign (=) them to a corresponding array of data on the right. So:
let [nextFunct, weekday, hour] = time
Would assign these values to the varialbes on the first iteration:
let [nextFunct, weekday, hour] = ["refreshSheet", "Monday", 7]
Without destructuring this variable assignment might look like this:
1
2
3
let nextFunct=time[0];
let weekday=time[1];
let hour=time[2];
Pretty cool, I reckon.
PReparing the days of the week
Next, we need to assign a day of the week to our clock trigger. These assignments require an enumerator which is basically:
ScriptApp.WeekDay.A_DAY_OF_THE_WEEK _IN_ALL_CAPS
Fortunately for us, we assigned our variable weekday to time[1] which is the day of the week for this iteration.
Lines 13-21
Creating the weekly clock triggers
Finally, we create our first clock trigger. Just like our date triggers we first call ScriptApp.newTrigger(nextFunct) where nextFunct is the time[0] value the user assigned as their function that they want to run on their trigger.
Again, we set the trigger to timeBased() but this time around we use onWeekDay() method. This method takes one of those weekday enumerators we store in our wkDay variable. We will select the correct one by adding weekday variable inside weekday:
wkDay[weeday]Line 25
For weekday triggers we can also set the hour of the day. This will deliver the trigger close to the hour selected. Line 26
The timeTrigger.remove() function runs on the end date. Alternatively, you can run this to remove all of your triggers if you are testing on making a mistake.
To remove your triggers, you will first need to get all of your projects triggers. We do this with ScriptApp.getProjectTriggers();Then, you will need to loop through each trigger and delete the trigger using the deleteTrigger() method that takes the trigger object.
Conclusion
I have been deploying triggers like this for a while now after and…erhm…unfortunate incident with meeting my quota and being lazy and leaving old triggers active. This now saves me a lot of future grief.
One thing you might have to adjust for a bigger project is the timeTrigger.Remove() method. If you have other triggers running in the same project, you probably don’t want to delete them. You could use the properties service to store your trigger ids and then check them against the list of all triggers to determine if they need to be deleted.
Another thing worth considering is that you might want to schedule multiple dates to run your triggers. You would need to loop through each start and end date here and create a trigger for each one.
Anyway, if you found this useful please give it a like in the comments below and if you have a plan to deploy it in your own project or a version of it I would love to hear about it in the comments.
In this tutorial, we will cover creating a custom Table of Contents that lists your Google Sheets tabs on its own tab using Google Apps Script. This Table of Contents (TOC) will update whenever you open your sheet or choose to update it with a button.
But Yagi! Can’t I just check the list of tabs from the All Sheets button in the bottom right or scroll across bottom list of tabs until I find what I need?
Sure you can, but sometimes the sheet tab name just doesn’t properly explain what is in your sheet. There is a word limit to the tags and that bottom tab bar will get awfully cluttered if you start creating verbose tags. 🐐
On most of your sheets, you will probably have a title or description perhaps on the first row. This will probably more accurately detail what is occurring. You might also have some universal details that you have on all your sheets that you want to display on your table of contents tab.
Finally, you might only want certain tabs to be in your Table of Contents.
Note! As always, read as much as you need or settle in to read the whole thing.
Table of Contents
Features
Our code contains the following features:
Generate a table of contents on a separate sheet tab. Any time we create a new sheet tab it will be added to our table of contents either on the next load of the Google Sheet or manually when editors of the sheet click a button.
Sort the sheet tabs alphabetically. So that your users have an easily indexable list. The can be removed.
Dedicated ‘Notes’ Sheet Tab for you to easily edit to change how you want your Table of Contents to be displayed. Make changes to how you want your Table of Contents to look right inside your Google Sheet.
Choose the location cell of your tab titles. Assign what cell your titles are going to be in.
Identify what Sheet Tabs you don’t want to be included in your Table of Contents. You might not want to share all of your tabs, right? For example, it seems a little silly to share your Table of Contents tab.
Optional addition of your Sheet Tab name included in the TOC.
There will be a bunch of example Sheet Tabs already there for you. Just go to File > Make a copy. Then open the Google Apps Script Editor (Extensions > App Script).
The Code
Code.gs
Code.gs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//############# GLOBALS ##################
constNOTES_SHEET="Notes";
/**
* Google Apps Script trigger that runs each time the sheet is opened.
*/
functiononOpen(){
updateTOC();
};
/**
* Updates the Table of Contents (TOC)
*
* Searches the sheet tabs and if the shet is not on the excluded list,
* it will add it to the TOC.
* It will then publish it on the assigned page.
*
* Requires a dedicated "Notes" google sheet with a set of input boxes.
*
*/
functionupdateTOC(){
constSS=SpreadsheetApp.getActiveSpreadsheet();
constSS_ID=SS.getId();
constTOC_vars=getVariables(SS);// Get the object of values drawn from the 'Notes' sheet tab.
//Set the Table of Contents to active sheet (focus to this sheet)
Enter in all of your extra Sheet Tabs. Or as many as you have. You can always add more and your sheet will update your Table of Contents (TOC) next time the sheet opens.
Enter all of your parameters for your TOC (more on this in a bit) in the Notes sheet tab and click the button to run the code for the first time and go through the process of accepting permissions to run the code if you are happy with it.
Make a copy of the Notes tab data. Create a Notes tab and paste it into the exact same location.
Right-click on the Notestab of the Template Google Sheet. Select Copy to > Existing spreadsheet. Then search for the current Google Sheet you are working in.
Then copy the Google Apps Script code above and paste it into your code editor.
What if I want to put the Notes setup in another place?
If you want to put the setup data in another Google Sheets tap, you will need to update the NOTES_SHEET variable on line 2 of the Code.gs file.
1
2
//############# GLOBALS ##################
constNOTES_SHEET="Notes";
If you want to move the setup data to start at a different cell you will need to scroll down to the getVariables() function and update the following line:
1
2
3
...
.getRange("A1:B31")
...
Ensure that the range is 30 rows deep and 2 rows wide and you will be good.
Completing the Setup Data in the Notes Sheet Tab
All grey areas indicate the places you need to fill out. There are instructions for each part. If you need an example, hove over the input fields and a note will popup with an example.
1. Select the location of your Title
All of your sheets will probably have the exact same location of their Title. Here you will provide the cell. If the title is merged over multiple cells, select the first cell in the top-left.
An example of a valid input would be, A2 or B4.
2. Do you want to add the sheet tab name to your Table of Contents?
You can essentially choose to display your table of contents with a counter and the title:
Or include the Sheet Tab name as a third row.
Having the sheet tab name can be really handy if you want to create other columns of data for your Table of Contents using the INDIRECT Google Sheets function. Take a look at this example:
Here is the formula, have a try yourself if you are playing along:
=IF(C3="","",INDIRECT(C3&"!A2"))
Check out this example sheet where we have added the name and students who have grades remaining to the TOC.
3. When a TOC link is clicked where should we navigate to?
You can choose what cell you want your uses to be navigated to when they click the link in the TOC.
You might not always want your users to go straight to cell A1. Perhaps you want to get them to work straight away and navigate them to the first cell of the data they need to enter say, cell B6 for example.
4. Name the Sheet Tab Where you are storing your TOC.
This will automatically be set to Contents, but you might want to call it TOC or list, or something.
Note that this will automatically update cell A20 so that it is excluded from the contents. If you are feeling a little eccentric then you can delete this.
5. The start row of the TOC
Choose the row that your Table of Contents, including the headers, will go. You might want to give your contents sheet tab a title so you may wish to indicate row 2 here.
6. Excluding sheets
You can list all the sheet tabs you want to be excluded here. the TOC sheet and the Notes tab is in by default but you can add up to 12 sheets you want to be excluded.
This might be useful for hidden sheets or sheet that don’t follow the Title pattern.
7. Run the code
To generate the TOC for the first time, run the code and got through the permission process. you will only have to do this once.
If you add more sheet tabs you can either click the button again or reload the page.
That’s all there is to set up your own Table of Contents for your Google Sheet. If you want to dive into the code with me, head down to the next chapter. If you are happy with this free tool, hit the like button and subscribe. Finally, donations help keep this site alive and reduce the ads I need to put on here. If you want to donate and support me there is a button up in the top-right of the sidebar.
Need help with Google Workspace development?
Go something to solve bigger than Chat GPT?
I can help you with all of your Google Workspace development needs, from custom app development to integrations and security. I have a proven track record of success in helping businesses of all sizes get the most out of Google Workspace.
Not much going on in the Global Variables. If you have your Table of Contents (TOC) setting in another sheet then you will need to update this.
onOpen()
onoOpen
1
2
3
4
5
6
/**
* Google Apps Script trigger that runs each time the sheet is opened.
*/
functiononOpen(){
updateTOC();
};
The onOpen() function is a reserved custom trigger in Google Apps Script. It can take one argument commonly notated as efor the event. For us, we do not need the event argument so we have left it out.
As its name suggests the onOpen() trigger runs when the document is first loaded. The function’s only task is to run the updateTOC() trigger.
It is generally a good practice to not bloat these custom trigger. Instead, use them to refer to functions that complete specific tasks.
updateTOC()
This is the main driving function. It will review the setup details for the TOC and then collect all the Google Sheet tab excluding the ones indicated. Then it will add the table of contents to the assigned sheet and then sort it.
Acquiring the main variables
1
2
3
4
5
...
constSS=SpreadsheetApp.getActiveSpreadsheet();
constSS_ID=SS.getId();
constTOC_vars=getVariables(SS);// Get the object of values drawn from the 'Notes' sheet tab.
We will need the unique ID of the spreadsheet to create our URL to link to other parts of the Google Sheet. Fortunately, we can do that easily with the getId() method. (Line 3)
Finally, we need to collect all the values that have been submitted in the TOC settings block found in the Notes. This is done with the getVariables(SS) function. This function takes the current spreadsheet object as an argument and returns an object containing something like the following example: (Line 4)
1
2
3
4
5
6
7
8
9
10
11
12
{
cellLoc:'A1',
sheetTabName:true,
navTo:'A1',
tocName:'Contents',
tocStart:'2',
exclude:[
'Contents',
'Notes',
'Example'
]
}
Loading the sheet on the Table of contents tab
1
2
//Set the Table of Contents to active sheet (focus to this sheet)
You’ll probably want your Google Sheet to open onto your Table of Contents each time. You can do this with the setActiveSheet() method that takes the sheet identifier.
Inside the brackets, you can see that we are using the getSheetByName() method to grab our selected sheet by calling on the TOC_vars object’s tocName key. In our example, we are referencing the Contents sheet tab.
If you don’t want the spreadsheet to open on your TOC you can comment this out or change the name of the sheet to your desired sheet tab name.
Set up the container variable that will store the TOC
1
2
3
4
5
6
...
//Set up headers depending on if user selects to add the Sheet tab or not.
let TOC_list=(TOC_vars.sheetTabName)?[["#","Title","Sheet Name"]]:[["#","Title"]];
let count=0;// This is to add a serial number to the list.
...
In our TOC setting, we give you the option to include the Sheet Tab Name as well as the title and reference number.
We use a Javascript ternary operator to first check if the tick box has been selected. If it has, we add the reference number, title and sheet name headers and store it in our TOC_list variable. If it hasn’t we only store the reference number and title headers. (Line 3)
To create our reference number, we will add a count variable and set it to zero. (Line 5)
Looping through all the Google Sheets
1
2
3
4
5
6
7
8
9
10
11
...
//Loop through all sheet tabs and select the title from each.
SS.getSheets().forEach(sheet=>{
let sheetName=sheet.getName();
if(!TOC_vars.exclude.includes(sheetName)){
let title=sheet.getRange(TOC_vars.cellLoc).getValue();
let sheetID=sheet.getSheetId();
...
Our first task is to iterate through all the sheet tabs. We can get a list of sheets using the getSheets() method. From there, we can apply the forEach JavaScript method to iterate through each sheet. (Line 3)
The forEach() method runs a function for each element in the array. We set sheet as our iterator variable.
The first task is to grab the sheet name from each sheet and store it in the sheetName variable. (Line 5)
As we look at each sheet name, we need to check it against our list of sheet tabs we want to exclude from our TOC. This is done on line 7 with an if statement that says that if the current sheet name is not included, or present, in our list of excluded sheet tabs, then continue with adding it to our table of contents.
We use the very fancy includes JavaScript method here to check if our current sheet exists in the list of excluded tab. Note the ! at the start which can be described as ‘not’ but more formally it means that we are looking for a false report on our if statement.
Next, we grab the title by using the getRange() Google Apps Script method to find the cell with the title in the currently iterated sheet. The location of the title is drawn from the TOC_vars.cellLoc value. The getRange() method can take, among other arguments A1notation to find a range. In our example, this is cell A1.
Lastly, we grab the sheet id. We will use this in a moment to create our sheet tab link.
Creating the link URL to each sheet tab
1
2
3
4
5
...
//Get the link to the sheet.
let sheetCellURL=`https://docs.google.com/spreadsheets/d/${SS_ID}/edit#gid=${sheetID}&range=${TOC_vars.navTo}`;
let hyperlink=`=HYPERLINK("${sheetCellURL}","${title}")`;
...
We’ll be making use of the Google Sheet HYPERLINK function to create a link for the title for each sheet. This function takes two arguments. The URL and the label for the URL. (Line 4)
Above this line, we will build the URL. There are three key points that we make modifications to the URL that you can see in the curly braces (${}).
The SS_IDis the unique spreadsheet ID for the current document.
The sheetID is the unique ID number for the sheet tab.
The TOC_vars.navTo is the cell where we want to direct the user to in the sheet.
Adding the count, title/link (and sheet name)
1
2
3
4
5
6
7
8
9
10
...
count++
//Add sheet tab data and count depending on whether user chose to add the Sheet Tab name
if(TOC_vars.sheetTabName){
TOC_list.push([count,hyperlink,sheetName]);
}else{
TOC_list.push([count,hyperlink]);
};
...
After we first increase our count by one (Line 2) we then need to add the count, the title connected to our link and if we chose to add the sheet name, well… we add the sheet name. 🙄
Line 5sif statement checks if the user selected the sheet tab name. If they did we push the count, hyperlink and sheet name to the TOC_list. Otherwise, we just push the count and the hyperlink. (Lines 5-9)
We will soon be pasting in our table of contents, but first, we will need to determine how deep our data is in rows and how wide it is. (Lines 6 & 7)
Just in case you delete out some Sheet tabs we want to make sure that you have a clean page, so we initially clear out the content. First, we grab the range with getRange() this time using 4 number parameters: (Line 8)
Row Start
Column Start
Row height
Col width
We have made the row height 100. It would be rare that you had more than 100 sheet tabs worth of rows in your TOC but you can always update this. Google is vague about the limit of sheet tabs.
Then we append the clearContent() method that clears the data from the range but not the formatting.
Finally, grab the range of the Table of Contents sheet again this time using our row height gathered from the length of the array. We then use setValues() to input our array of TOC into our sheet.
Our last task is to sort our table of contents. This is an optional step and you can comment out these two lines if you don’t want to use it.
We want to make sure that our data is loaded into our Google Sheet before we sort it or we might have an error or the sort might be skipped entirely. This is called accounting for Race Conditions. This is done by applying the flush() method straight from the SpreadsheetApp class. (Line 2)
Next, we want to grab the row below our newly added header and then all the listed sheet tabs. We add the Google Apps Script sort() method to this which for us takes a single argument, sort ascending by the 2nd across. (Line 3)
getVariables()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* Acquires the user preferences for the TOC from the 'Notes' Google Sheet.
*
* @param {object} SS - the SpreadSheet App object.
* @return {object} = an object containing.
*/
functiongetVariables(SS){
constvals=SS.getSheetByName(NOTES_SHEET)
.getRange("A1:B31")
.getValues();
//Assign input from 'Notes' tab to keys.
constdataReferences={
cellLoc:vals[3][1],
sheetTabName:vals[6][1],
navTo:vals[9][1],
tocName:vals[12][1],
tocStart:vals[15][1],
exclude:(()=>{
return(vals.slice(19)
.map((row)=>row[0])
.filter((row)=>row!==""))
})()
}
returndataReferences;
};
The getVariables() function takes the spreadsheet as an argument and returns an object, for example:
1
2
3
4
5
6
7
8
9
10
11
{
cellLoc:'A1',
sheetTabName:true,
navTo:'A1',
tocName:'Contents',
tocStart:'2',
exclude:[
'Contents',
'Notes',
'Example'
]}
The functions first task is to grab the range of Table of Contents settings data. First, it grabs the sheet by its name (Line 8).
Then it grabs the range. You can change this range value if you put the settings range in a different spot. Just make sure it is 2 columns wide and 30 rows deep. (Line 9)
Next, we grab the values of the settings range with the getValues method. (Line 10)
We then create the dataReference object and assign our setting values to our sheet. Each location is in a 2d array and we draw them out of our vals array by first referencing the row and then the column: (Lines 13-23)
vals[row][column]
To get our list of excluded sheet tabs we run an Immediately Invoked Function Expression (IIFE)(Line 19). First, we slice our vals array from row 19 onwards (Line 20). We then use the map method to iterate through the remaining rows selecting only the first column (Line 21). Finally, we filter out all the empty rows ( Line 22)
The dataReference object is then returned to updateTOC() function. Line 25
Conclusion
Creating a table of contents in a tab of your Google Sheet is pretty useful for your users to be able to quickly navigate to what sheet tab they need. I hope that after reviewing the code you can make some changes for your own project.
If you have been playing along, you might have noticed that there is no data validation to ensure the received TOC settings are correct. I kinda thought adding this extra level of complexity would detract from what I was trying to achieve in the tutorial portion of this post.
However, running some validation either Google Sheets-side with Data Validation or inside your Google Apps Script will help reduce errors, but to be honest, not many folks are going to have access to the settings and those that do will probably figure out the error.
I was compelled to write this post based on interest in my Table of Contents from my previous post on using Google Sheets as a recipe folder. Check it out:
I would love to hear how you applied this Table of Contents creator in your own project. Feel free to comment below.
If you like this tutorial, give it a like so I know to keep em coming. If you want a regular dose you can subscribe down below. And if you want to support me, feel free to donate (top right-sidebar).
Google Apps Script: SpreasheetApp, DocumentApp, DriveApp; Google Sheets, Google Docs
If you have ever worked in LibreOffice or Microsoft Excel you will probably be familiar with the mail merge. Traditionally, mail merge is used to create multiple versions of a document and snail-mail them to someone.
These days, we don’t often use the snail mail approach, but it is a regular occurrence for us to need to produce multiple versions of reports based on a data set usually from a spreadsheet.
In this tutorial, we will create a document merger that will create new Google Documents based on a dataset from a Google Sheet using Google Apps Script.
If you want to quickly jump into your own project with our script, I’ll provide you with a quick-use guide.
Then, we will set up a template for our Google Doc and generate our Google Sheet data (don’t worry, I’ll share the document so you can follow along).
Finally, we will jump into the breakdown of the code for those legends who are learning how to create their own Google Apps Script.
Let’s get started:
Note: As always, take what you need and don’t worry about the rest.
Google Apps Script: Time Triggers, ClockTriggerBuilder, ScriptApp
One of the most powerful things about Google Apps Script is the ability to automatically complete tasks with time-driven triggers. You can set up your code to run any one of your functions in your script by the minute, hour, day, week, or month. You can even set it to run based on a specific date.
Have a look at the time-driven trigger options below:
Specific Date and Time: Based on: YYYY-MM-DD HH: MM format
Minute: Every minute or every 5, 10, 15 or 30 minutes.
Hour: Every hour or every 2, 4, 6, 8 or 12 hours.
Day: At a time within an hourly bracket. For example:
Midnight to 1 am,
3 pm to 4 pm
Month: On a specific day of a calendar month at a specific time. For example:
Every 3 day of the month at between 3 am and 4 am.
There are two approaches to setting up these time-based triggers. The first one is by simply using the Trigger creator inside the G Suite Developer Hub. This allows you to select the function that you want to add a trigger to for your project and fill out a simple form to determine when you want your trigger to run.
Alternatively, you can create a time trigger programmatically using the ClockTriggerBuilder class.
In this tutorial, we will build on a previous project we’ve called The Badger, that contains a task check off Google Sheet. If the user does not check off their sheet by the due date, then we can send them an HTML email reminder.
Don’t worry, I will provide the starter code and the Google Sheet for you in a minute. However, if you want to learn how I created the email reminder for The Badger you can follow the tutorial here: