Monday, October 24, 2022
Add a Label to Chart Data
Monday, September 19, 2022
Protecting Cells
Sometimes there are sheets that you want to share, but maybe some of the data needs to be fixed. This is when protecting cells can help.
To protect a cell or a range of cells:
1. Highlight the cell or cells and select the DATA menu.
2. In the DATA menu, select, Protect sheets and ranges
3. In the menu that appears on the right, enter a description. In my example, I wrote a message for whom to contact for editing rights.
![]() |
| After clicking Change permissions, this pop-up appears. |
Monday, September 12, 2022
Working on Putting Together Email Addresses
SOLUTION
Sunday, September 4, 2022
Add Cells From a Different Sheet
I teach a coding course where some of my lessons have combined classes come to me. We recently had some new students and I wanted to see what the updated number of students in the class would be.
I started by simply adding the numbers. I found that you can hold CMD and click on all the cells and Google Sheets will automatically give you the sum of the numbers.
But what happens when students enter or leave the school? I have to manually update my sheets.
Fortunately, I have access to the main spreadsheet with the class numbers.
Since I want an up-to-date sheet, I knew I could use the IMPORTRANGE function to get the information. Then I needed to add them together using the SUM function.
The final formula looked like this below.
=SUM(IMPORTRANGE("sheetURL", "Sheet!C28:C29")+IMPORTRANGE("sheetURL", "Sheet!C30:C31"))
Thursday, July 7, 2022
RANDBETWEEN Function
![]() |
| =RAND() |
As you can see in the above screenshot, the RAND function will probably not give you a usable number right away. That is where the RANDBETWEEN function comes in. With RANDBETWEEN, you can set the parameters of the integers (whole number) you are interested in seeing. In the example below, RANDBETWEEN will choose between 1 and 10.
Sunday, June 5, 2022
Interactive Chart Data with Checkboxes
Data is most useful when it can be manipulated easily, by anyone.
I must have started by taking the student data and putting it on the first sheet. Again, I am just guessing, but that seems like a reasonable place to start.
Then, I am pretty sure I followed that by starting building the formulas on the second sheet. I made three columns, a country name, number of students for that country, and then the checkbox.
The formula I used was a SUMIFS formula
=IF(C2,SUMIFS(Sheet1!$B27:$B51,Sheet1!$C27:$C51,A2),0)


















