Members-only tutorial

Watch the video and get the practice sheet with membership.

See membership options

Embed a Number in a Website from a Google Sheet

About this Tutorial

Ever wanted to display some data from a google sheet on your site? Without using 3rd party tools here is the javascript, html and the sheet you will need. and step by step instructions on how to use it.

Video Transcript

<div>00:00 Hello, welcome. So this started as a test, and now the test is complete. We can now embed a number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab from a Google sheet into a website.<br>00:11 You are seeing the result of this test right here at embed a number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab .card.co. I'm using card as the website builder.<br>00:18 It allows me to insert a little bit of html, JavaScript and a little bit CSS or a little styling. Those three things combined, I've written that all for you if you want to use this and wanna test it yourself.<br>00:30 And I'll show you the app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab that I use to power this.

So let me just show you how this works.<br>00:35 First off. So on the le on the right here is a test. That's text that I just added, but this 99, this number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab is in this Google sheet here on the left in a one we can actually make that a little bit bigger.<br>00:50 So if I can just change that to say 44, 33. Now I just changed the sheet alone, and now on the right side on the website, I'm just gonna hit refresh.<br>01:03 Just hitting refresh will make that number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab go away. And now there's 33.

See, the number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab is refreshed, is going to be whatever is in the Google sheet.<br>01:13 Now this Google sheet is basically like a database, right? It's essentially at the end of an API call or in this case http request, get request.<br>01:27 And all of that you don't necessarily need to know. But I'll show you how this works. This works with literally two lines of app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab here, and I'll walk through those.<br>01:37 And if we look at the embed, I've saved the embed in the sheet here. If you have access to the sheet, you're gonna have access to this code.<br>01:45 What? Right here.

Okay, so let's start on the left side where we have the code. Now that's probably the, gonna be the hardest part of this because in JavaScript you can just use this and copy paste it and that's it.<br>02:02 But you might wanna know actually how this works in JavaScript in app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab . So it's a function Understand the basics of functions in Apps Script for Google Sheets. Opens in new tab do get. This is something that's pretty easy to implement because literally all you have to do is type, function Understand the basics of functions in Apps Script for Google Sheets. Opens in new tab , do get, do then a capital g e t that is all you have to do.<br>02:21 You don't have to install anything. You don't.

This is a trigger Get to know triggers in Google Sheets and how they can automate tasks. Opens in new tab that is called a simple trigger Explore simple triggers and how they can enhance your Google Sheets experience. Opens in new tab inside of Google Sheets.<br>02:28 Just writing do get allows you to then deploy a web app. Now that's the, that's the big part, is you're gonna go up once you have this written, and I'll go through these two lines of texts soon enough.<br>02:42 Let's make it a little bit bigger. Once you have this text, you're going to hit up here deploy new deployment, and you're gonna go through the process of deploying.<br>02:52 You'll have to select the type web app and then hit deploy for the first time.

The first time you do it, you're going to have to enable,&nbsp; You know, authorize authorize it.<br>03:02 What you're gonna want to do is execute as Understand the 'execute as' feature for deploying your Apps Script. Opens in new tab me and then who has access Learn how to manage access permissions for your Google Sheets. Opens in new tab . You're gonna wanna change this to anyone.<br>03:08 I will try to show you some errors you might encounter as we go about this, but probably the first part of this let's go from the beginning.<br>03:16 Let's create a spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab , and you can do that with sheet.new. I just have a one sale sheet. I'm just putting in a one.<br>03:25 And I'm, I named this sheet number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab with a capital N. That comes, i, that's important.

Later in our app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab , we're just gonna write function Understand the basics of functions in Apps Script for Google Sheets. Opens in new tab .<br>03:36 Do literally do capital G get, now I'm writing it again, right under it, just so you can see how I wrote this step by step.<br>03:46 So I had these curly brackets, I have these parentheses and these curly brackets. And inside the curly brackets I'm gonna do we wanna do variable data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab equals, actually we'll add this later.<br>03:57 The most important part is spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab app with a capital S and a capital a spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab app dot get active spreadsheet Find out how to access the active spreadsheet in your Apps Script. Opens in new tab .<br>04:06 We can use this auto cor auto fill Learn about autofill features in Google Sheets to streamline data entry. Opens in new tab , auto complete.

If you do not have auto complete here when you're typing this out, then you probably made some error Troubleshoot common errors you might encounter in Google Sheets. Opens in new tab , like maybe you did spread with a a not capitalized s or you did a sheet app.<br>04:22 That's easy to do. Now if I hit the dot, there is no auto complete.

So those are easy things to get wrong.<br>04:29 If this is the first time you're doing app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab , if you says is the first time you're doing app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab , this is a pretty advanced concept.<br>04:36 This do get go ahead and check out spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab automation 1 0 1 over@bettersheets.co or have the whole course on Udemy as well.<br>04:43 Spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab automation 1 0 1 by Better Sheets. So we have spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab , app dot get active spreadsheet Find out how to access the active spreadsheet in your Apps Script. Opens in new tab .

One thing we're gonna have to do, not on the pink part spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab app, but everywhere else we're gonna have to add these parenthesis, nothing inside the parenthesis, just the parenthesis we need to add.<br>05:03 Then we're gonna do get sheet by name. And so in this case, we're actually going sort of deeper and deeper from the spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab app as a whole across all of Google sheets to get active spreadsheet Find out how to access the active spreadsheet in your Apps Script. Opens in new tab , which is the file.<br>05:13 Then we're gonna go inside it to get sheet by name. It is a capital B.

You can just start typing it and then select it from the auto complete.<br>05:21 If you don't select it, make sure that it's capital S, capital B, capital N. And then you must add the parenthesis.<br>05:30 Now, inside the parenthesis we're gonna put in quote numbers. That's the name of the sheet. So if you ever wanna change the name of this sheet, change the name here as well.<br>05:39 Gonna do get range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab . And here we're gonna do a one in quotes.

A one is the cell that you're trying to get the number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab from here to your website.<br>05:50 You're trying to embed in your website whatever number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab that is, wherever it is in your sheets, that's where what you need to do.<br>05:56 You gotta get The, the sheet name Learn how to reference sheet names correctly in your Apps Script. Opens in new tab and then the range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab . Then we're gonna do get value.

This is probably the most easy or easiest to forget part because we think sheet by name get range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab .<br>06:10 If you haven't typed out app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab before this Get value actually gets the value inside the cell, but the range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab just gets the cell and we think, okay, we got the cell, we got the number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab , we're on our way.<br>06:19 No, you're not. You have to get the value that's inside the cell here. That's inside the cell, inside the range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab .<br>06:27 That's inside the sheet, that's inside the sheet file, it's inside Google Drive, right? That's all of this here.

We're going from Google Drive to Google sheet to the sheet tab , the tab to the range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab , to the value inside of that cell.<br>06:39 That's stepping down, down, down into that. Now at the beginning, we've gotta do variable data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab equals, that's why I like to do that variable data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab later.<br>06:48 Now, where do we want that variable? Well, we want the, the do get. Whenever the H G T P request goes out, what do we want to get out of that?<br>06:57 We want to return, we always have to have a return.

And in this case, we want to return the data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab .<br>07:04 But in many times the data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab is going to be we don't necessarily know what it's going to be, but we wanna return a string .<br>07:13 There's strings, there's a array. There, there's different types of data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab or different types of information that we can send. We wanna do two string .<br>07:24 And again, when we type out data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab , cuz we have a variable data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab here.

When we hit a period, we have auto complete here, select two string again, add the parenthesis, but that's not everything.<br>07:39 In order to use the do get, we need to use this content service to create a text output. So we're gonna wrap this.<br>07:46 I'm actually gonna get do Command X and cut it. So we'll paste it later. We do content service with capital letters, just like spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab app is a embedded sort of lot of functions that it gives us.<br>08:00 Content service is the same thing. Content service with a capital C, capital s dot.

Now we only have two options.<br>08:07 Now I said it has a lot of options, but this is the only two that we have for content service.<br>08:11 Just like spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab app has this auto complete of all the things available. Content service is the same. So now we are gonna select create text output.<br>08:20 Inside of this create text output. We are going to paste what we deleted, which was data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab dot two string .

But you can also just type that out if you want to data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab dot two string and then add parentheses after the two strings.<br>08:33 So this closed parentheses is for the create text output, whereas the two string must have its own open and closed parenthesis as well.<br>08:41 That is it. That's the whole shebang. That's all of the app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab you need to know. Once you type this out, you're only gonna need one.<br>08:50 You don't need multiple Do gets, I just wanted to type that out so you knew how it was built.

You're gonna save, hit, deploy, new deployment again, the first time you do this, when you hit web app and then configure I gotta select it again.<br>09:05 You gotta do execute as Understand the 'execute as' feature for deploying your Apps Script. Opens in new tab me you &lt;laugh&gt;, that means you, not me, me, you, you. And then who has access Learn how to manage access permissions for your Google Sheets. Opens in new tab ?<br>09:12 This will be, it will automatically be selected as only myself. Change it to anyone and then hit deploy. If you make any errors and stuff, you can always redeploy.<br>09:22 We are just gonna grab this web app. Hit done.

Now, if I hit shaman shaman shift command and I'm gonna open an incognito window, I'm gonna just, the only thing I'm gonna do is paste that web app u URL that I was given by Google.<br>09:38 Hit enter and see what happens right here. 33, that is it. That is the whole thing. We've essentially created an API that takes a u URL input and gives you back some number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab .<br>09:52 And where that number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab is, is inside of this Google sheet.

So we can change this to 42, hit enter, go back to our here our, our script, or not our script, our our url.<br>10:06 Hit command R to refresh it and send that get request again. And here we go. We got 42. If we go to our page over here, we hit Command R.<br>10:16 We are refreshing getting that, that get request again, 42. It is refreshed. Every time we want to refresh the page, we can refresh it.<br>10:26 If we change the numbers, it'll be, it'll show up the next time you open that page.

All right, what's the next step is it's the website.<br>10:33 What's really cool about this is that you can create this, your url, you can embed it into a, on a website because all we're doing is going and getting that that number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab that this, this text response.<br>10:48 But how do we actually put it into a sheet? Now this is gonna be a little difficult for me to explain cuz it's not my suit.<br>10:54 I'm, I'm very good in Google Sheets outside of Google Sheets.

I'm not necessarily that great, but I have written a little bit of JavaScript here for you.<br>11:03 And essentially what we're doing is we're creating an H one at the top and we're giving the idea of number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab .<br>11:09 The script is gonna take the URL that we have that we deployed, which is actually we need to update that, I do believe.<br>11:17 There we go.

It's going to take the URL of the web app that we've created and it's gonna go fetch it.<br>11:24 And then that response, we're gonna get the text back and we're going to then take that text that we get back and insert into the document.<br>11:34 Wherever it says number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab this ID number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab , we're going to append the A span with that number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab in it. And that's what all of this is doing here.<br>11:44 Again, I'm, this is out of my element a little bit, but the, this JavaScript is working as long as you use it here as I'm doing.<br>11:53 You do have to wrap this in a script and then a slash script.

If you are familiar with JavaScript, this is going to be super easy for you.<br>12:01 And maybe the app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab was a little bit difficult to know or didn't know exactly what to type. You can also style this with your own css.<br>12:10 I've just chosen to style with color white and a font size 50 pixels. That's it. So that's the CSS as much &lt;laugh&gt;, I didn't even use css, I just used styling here.<br>12:22 Used an H one in this particular case.

You might need it in multiple places and you might need multiple numbers, but that's not the part of this video that we're gonna go over.<br>12:35 So all I did is I'm using card I inserted a HTML embed and then I put the code right here as you see it here.<br>12:44 I took all of this and we can copy paste it, click done, click publish changes. And I'm just publishing this directly to a site on card.<br>12:58 And let's see, we're double checking. It's working 42 and here we go. 33.

So I'm gonna now show you a couple errors that you might run into if you're doing this.<br>13:09 First off, if you are getting, let's see, you might not have this Doge correctly spelled, you might not have the parenthesis, you might not have.<br>13:21 If you don't have the parenthesis, I don't even think it's gonna let you save. There it goes.

You got a syntax error Identify and fix syntax errors in your Apps Script code. Opens in new tab , unexpected, unexpected token and it shows a red line here under the curly bracket.<br>13:32 But in actuality, the real problem is that you not with the curly brackets, that you don't have parentheses if you don't have the curly bracket and you hit command S see what happens.<br>13:42 Syntax error Identify and fix syntax errors in your Apps Script code. Opens in new tab , unexpected token variable. It'll say the error Troubleshoot common errors you might encounter in Google Sheets. Opens in new tab is here at variable data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab , but in actuality you don't have the curly brackets.<br>13:51 So will move all of this inside the curly brackets. Hit save again there on deployment.

If you are deploying and you choose and you don't have access to anyone, you give it only to myself.<br>14:08 I'll show you what shows up here. We'll deploy this. We're gonna grab this web url, web app. I'm gonna hit shift command, end opening incognito window.<br>14:19 And I'm just gonna paste that URL right here. And we should get something like this, right? This is a sign in.<br>14:25 This is not what we want. We just want the text. You might get an error Troubleshoot common errors you might encounter in Google Sheets. Opens in new tab . But in our case, we, it asks us to sign in.<br>14:35 So we go back to deploying new deployment.

We're gonna change this to anyone.&nbsp; Yeah, we make that me hit deploy again, updating the deployment copy, then do it again.<br>14:53 And we got the number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab . All right. Another issue is if you miss spell the name of the sheet in our here.<br>15:02 So if it's like numbers, let's say or we not capitalized, right? A hit command. S hit deploy new deployment, like gonna deploy this.<br>15:11 Like the first time we deploy it, we're like, okay, every everything's fine. You know, spoil alert, we know that the sheet name Learn how to reference sheet names correctly in your Apps Script. Opens in new tab is wrong again, let's test it.<br>15:21 We get type error Troubleshoot common errors you might encounter in Google Sheets. Opens in new tab .

Cannot read properties of no. So it's saying get range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab . It's, it's telling us exactly where that error Troubleshoot common errors you might encounter in Google Sheets. Opens in new tab is.<br>15:28 Get range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab , let's go look at get range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab , get range Understand how to work with ranges in Google Sheets for data manipulation. Opens in new tab . So again, the errors might not be exactly where they are, but just after or just before, just after where the real error is, which in this case, again, spoil alert.<br>15:40 Spoiler alert, we have the wrong sheet name, we need number, okay? So again, we fix that. We'll hit deploy new employment and we hit deploy.<br>15:54 Get our url, we try it again and everything's fine. &lt;laugh&gt;, right? Okay, done.

Now let's say we have done all of the app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab , correct?<br>16:06 We've deployed it correctly. We have it on our website and we go back to our sheet and we delete that number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab .<br>16:12 What happens? Let's see, &lt;laugh&gt;, what happens? We're going to get nothing. &lt;laugh&gt;, absolutely nothing like this is one of those weirdest errors where you're like, ah, is this an error Troubleshoot common errors you might encounter in Google Sheets. Opens in new tab ?<br>16:24 I mean, I'm not getting anything. Should I get something? You might be googling for this google user content.com. This tells you it's like a redirect issue.<br>16:33 If you're just like searching for this.

I've been searching for this for days. I was like on this as a prom.<br>16:38 And really the actual issue is you don't have a number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab . It's, it's showing you exactly what there is. We'll put 8 74 there.<br>16:46 Again, change nothing else, but change that number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab . There we go. We have that text as a number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab 8 74. Great. All right, if, are there other errors?<br>16:57 There might be, you might have errors in the not the pronunciation. Oh my god. The capitalization of spreadsheet Get familiar with the structure and functionality of Google Sheets. Opens in new tab , app of content service.<br>17:07 If you have it correctly colored in here, then you know you're on the right track.

If it's not a pink, then you're on the wrong track again.<br>17:17 So if we just have a under, under case, no lowercase c you won't get that pink content service and you also won't get the auto complete.<br>17:27 We did, you might have active sheet Discover how to work with the active sheet in your Google Sheets. Opens in new tab here.

I would recommend active spreadsheet Find out how to access the active spreadsheet in your Apps Script. Opens in new tab because we're not actually on the sheet itself when that get request is happening.<br>17:38 Active sheet Discover how to work with the active sheet in your Google Sheets. Opens in new tab is really used for when you're creating an app script Discover how to use Apps Script to connect Google Sheets with your website. Opens in new tab and a script that runs when you're using the sheet itself.<br>17:48 You might also have an issue with, with data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab dot two string , you might forget to add the two stringing. You're like, Hey, this is a number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab , I just want the data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab done.<br>17:55 You might have a variable data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab , you might call this number and then this data wouldn't exist.

And you'll know if this variable is correct or not because it's grayed out.<br>18:05 If it's grayed out, it is wrong because it's not used anywhere. That's what this is telling you. This number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab is saying we're not using this.<br>18:12 If we change this data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab to number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab , you'll see now this variable number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab is darker. It's not gray, it's more black.<br>18:19 That is correct. So these two things can be literally anything you want. They just have to match .

So data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab and data Dive into data handling in Google Sheets and how to retrieve it with Apps Script. Opens in new tab for this sake, command S again, if you have some issues when, when saving, you might have some dot problems.<br>18:35 This is, this is auto wrapping, so don't think that you have to like add a, a new line here. We have a period I think.<br>18:50 Yeah. And then, yeah, this is all auto wrapping here. So this is all one line, line two, and this is line four here.<br>19:00 Cause I added a space there just to make it easier to read. Any other issues you have, comment down below or let me know.<br>19:08 Email me if you're a member. I'd happy to.

No, I hope this, I hope embedding a number Learn how to embed a number from Google Sheets into your website effortlessly. Opens in new tab is as cool for you as it is for me.<br>19:17 Bye.</div>

Courses

Sheet Stories / Video Notes + ADDED: Email Notifications

00:00:00

Fast FAQS

Enter Google Drive File Name Get URL

ChatGPT Clone in Google Sheets Part 2

Create an Internal Google Sheets Add-on

Tweet From a Sheet

Why Different Cell References in AI Integration in Sheets?

Show Sheet Tabs Based on Edit

Add Title Case to Google Sheets

How to Power Testimonials with Google Forms and Sheets

Getting Started Coding in Apps Script

Seek Errors When Coding Apps Script

Think Like a Programmer: Develop The Mindset of an Apps Script Coder

ChatGPT Clone in Google Sheets Part 1

Embed a Number in a Website from a Google Sheet

Create Navigation Like A Book or Presentation

Add Click Tracking To Your Google Sheets | Bitly in a Google Sheet

00:29:08

Hold a Giveaway Raffle in a Google Sheet

Quickstart Tutorial OpenAI API in Google Sheets

Capture Emails from Website Form to a Google Sheet (Without Zapier)

Embed a Headline in a Website from Google Sheets

Create a new Spreadsheet from just a Name in a Sheet.

00:05:21

Bjarne Asks: Can I show the Last Time of the Last Edit in a sheet?

00:05:43

Email Yourself a Cell from a Google Sheet, Every Day

OpenSea Data Inside Sheets

Create an Email Campaign Stats Calculator

00:35:13

Twitter App Clone in a Google Sheet

Dylan Asks: How to Automatically Delete Rows If Cell Contains Value

Highlight Row as You Move Your Cell Selection

Create a Timer with Apps Script

LinkTree in a Google Sheet

00:11:22

Password Protecting Data In a Google Sheet

Automatic Weekly Backup of Google Sheets

Create a CPM Custom Function (Create Better Calculators!)

Move Entire Row when a Cell is changed to "Yes" - The $75,000 Google Script

00:12:29

What Can You Automate in Google Sheets? Every single trigger available to Google Sheet users

Sync Two Tabs Without ImportRange()

Google Sheets Stories? No! But we'll add timestamped video notes to your google sheets.

00:00:00

Password Protecting Data In a Google Sheet Part 2 The Basics

Benoit Asks: How to Convert Case

00:07:35

Learn to Code in Google Sheets, For Programmers

Add a Checkbox to Turn on Dark Mode

00:05:10

Write Your First Script

00:08:31

Find Keywords in Any Column. Create quick search dropdown to find keywords

00:09:37

Basic CRM - Add a Powerful Script To Move Row Based on Status

How To Improve: 1,000 Business ideas: Business Idea Generator

00:11:20

Let's Make a Bookmarklet!

00:12:37

Troubleshooting Bitly in a Google Sheet Script

00:07:07

Unique Features - Design a Better Dashboard Part 2

00:04:13

How To Set Up Stripe Webhook to Google Sheets with Google Script

00:22:10

How to Edit a Macro

00:08:22

Sheet Stories / Video Notes + Clear 24 Hour Old Videos

00:35:10

Add A Timestamp to Task Lists (without Now Formula)

00:07:44

Make your Custom Functions Like Native Functions | Custom Function Autocomplete

00:17:58

Create a Changelog Between 2 Cells Custom Function | To learn Double For Loop

00:23:26

New Syntax for WhatChanged Formula in Google Script

00:07:14

How to Record Macros

00:06:20

2 Ways to Delete Lines Quickly (CAREFUL, it's a script!)

00:09:53

Deep Inside Dark Habits Google Script

00:18:54

How to Trigger Macros Daily

00:06:58

5 Ways to Create Coupon Codes | Create UUIDs

Create a Radio Button From Checkboxes Using Google Apps Script

00:15:01