Recall & Review
beginner
What is a custom function in Google Sheets?
A custom function is a special formula you create yourself using Google Apps Script to do tasks that built-in functions can't do.
Click to reveal answer
beginner
How do you start writing a custom function in Google Sheets?
Open the Extensions menu, choose Apps Script, then write a JavaScript function that starts with the keyword
function and returns a value.Click to reveal answer
beginner
What must a custom function always do to work correctly in a cell?
It must return a value. The returned value is what you see in the cell where you use the function.
Click to reveal answer
intermediate
Can custom functions in Google Sheets change other cells or the spreadsheet structure?
No, custom functions can only return values to the cell they are called from. They cannot change other cells or the sheet layout.
Click to reveal answer
beginner
How do you use a custom function once it is created?
Just type its name like a normal formula in a cell, for example
=MYFUNCTION(A1), and it will run and show the result.Click to reveal answer
Where do you write a custom function for Google Sheets?
✗ Incorrect
Custom functions are written in the Apps Script editor accessed from Extensions > Apps Script.
What must a custom function always do to work properly?
✗ Incorrect
Custom functions must return a value to display in the cell where they are used.
Can a custom function modify other cells in the spreadsheet?
✗ Incorrect
Custom functions cannot change other cells or the spreadsheet layout.
How do you call a custom function in a sheet cell?
✗ Incorrect
You use custom functions just like built-in ones, starting with = and the function name.
Which language do you use to write custom functions in Google Sheets?
✗ Incorrect
Google Sheets custom functions are written in JavaScript using Google Apps Script.
Explain how to create and use a custom function in Google Sheets.
Think about the steps from writing code to using it in a cell.
You got /4 concepts.
What are the limitations of custom functions in Google Sheets?
Focus on what custom functions cannot do compared to scripts.
You got /4 concepts.