0
0
Google Sheetsspreadsheet~5 mins

Custom functions in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
ADirectly in a cell
BIn the Extensions > Apps Script editor
CIn the Google Docs document
DIn the Google Drive settings
What must a custom function always do to work properly?
AReturn a value
BChange other cells
CSend an email
DOpen a popup window
Can a custom function modify other cells in the spreadsheet?
AYes, always
BOnly if you have admin rights
CNo, never
DOnly on weekends
How do you call a custom function in a sheet cell?
ABy typing its name with an equal sign, like =MYFUNC()
BBy clicking a button in the toolbar
CBy right-clicking the cell
DBy opening the script editor
Which language do you use to write custom functions in Google Sheets?
AHTML
BPython
CSQL
DJavaScript
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.