Google Sheets Function List
Last Updated :
31 May, 2024
A function is a built-in formula in Excel that performs calculations using specified values in a set order. Excel offers many common functions to quickly compute the sum, average, count, maximum, and minimum values of a cell range. To use functions effectively, you need to understand their components and how to create arguments for calculating values and cell references.
Google Sheet Function List What is a Function in Google Sheets
A Google Sheets function is a calculating tool available in the spreadsheet program. Using a particular function, you may sort data and see how it relates to other data points as you enter it. The intricacy of these functions varies. Some solve fundamental mathematical problems, while others aid in comprehending more intricate data.
What Function of Google Sheets Includes
Just like with formulas, the order in which you enter a function in a cell matters. Each function has a specific syntax that must be followed to work correctly. To create a function formula, start with an equals sign (=), followed by the function name (like AVERAGE for finding an average), and then the argument. The argument includes the information or cell range you want to calculate.
How to Use Google Sheets Functions
Step 1: Open Google Sheets
Create a new spreadsheet or open an existing one.
Step 2: Select a Cell
Click on the cell where you want to use the function.
Step 3: Enter the Function
Start with an equal sign (=), followed by the function name.
Example: =SUM(A1:A10)
List of Important Google Sheets Functions
Here are 14 Google Sheets functions you can use to make managing data easier:
SUM
One of Google Sheets' most fundamental operations is the SUM function. The SUM function allows you to add several cells at once.
How to use SUM function in Sheets
Step 1: Open Sheets from Google Workspace
On the right-hand side, you will see dots, and tap on it. Scroll it down, and you will see Google Sheets. Please open it and choose a blank page.
Step 2: Choose a cell
Click on an empty cell where you want the total to show up.
Type =SUM(B2:B7).
Step 4: Press Enter
Press Enter, and you will get the SUM.
Example of SUM Function:
=SUM(A5:A10)
SUMIF
The SUMIF function lets you determine the total number of cells that satisfy specific requirements.
How to use SUMIF in Sheets
Select the cells with the data and the enter the formula =SUMIF(A:A,"Text",B:B).
Enter the formulaStep 2: Pick your numbers
Click and drag all the numbers across the cells that you want to add up in (). Click Enter.
Example of SUMIF function:
=SUMIF(A:A,"Text",B:B)
COUNT
Use the COUNT function to determine how many cells in a range contain a value. The steps below are provided for your convenience.
How to use COUNT Function in Google Sheets
In that cell, type =COUNT( (equal sign, then COUNT followed by an opening parenthesis).
Step 2: Select Your Data
Click and drag across all the cells containing the data you want to count. It can be text, numbers, or even dates!
Example of COUNT function:
=COUNT(D:D)
TODAY
You may input the current date into a spreadsheet cell using the TODAY function.
How to use TODAY Function in Google Sheets
In that cell, type =TODAY() (equal sign followed by TODAY and parentheses). Click Enter.
Examples of TODAY function:
=TODAY() or =TODAY()+5
COUNTIF
If specific criteria are met, the COUNTIF function lets you count the number of cells in a range that contain a value.
How to use COUNTIF in Sheets
Type =COUNTIF( (equal sign, then COUNTIF followed by an opening parenthesis). Click and drag across all the cells you want to consider (like A1:A10) and type in (). Click Enter.
Enter the formula Example of COUNTIF function:
=COUNTIF(A:A,"Text")
AVERAGE Function
The AVERAGE function determines the AVERAGE function determines the data. You can enter either or calculate an average of calculate in a specific column or row.
How to use AVERAGE Function in Sheets
Step 1: Type the " =AVERAGE"
In that cell, type =AVERAGE (equal sign, then AVERAGE followed by an opening parenthesis). Click Enter.
Example of AVERAGE function:
=AVERAGE(A:A)
SORT Function
Cells containing numerical data can be sorted using the SORT algorithm from lowest to highest value.
How to use SORT Function in Google Sheets
Type =SORT( (equal sign followed by SORT and an opening parenthesis). Click and drag across all the cells you want to sort. Click Enter.
Enter the formula =SORT ( )Example of SORT function :
=SORT(A:A,1,TRUE)
SPLIT
Using the SPLIT function, you can split text from a single cell into numerous cells.
How to use Split Function in Google Sheets
In cell B1, type =SPLIT( (equal sign, then SPLIT followed by an opening parenthesis). Choose Your Text to Split.Tell it Where to Split. Click Enter.
Enter the formula
Example of SPLIT function:
=SPLIT(A8,"text")
IFERROR
If a function produces an error in a specific cell (or set of cells), you may use the IFERROR function to find the value for that cell.
How to use IFERROR in Sheets
Step 1: Start with IFERROR
In that cell, type =IFERROR( (equal sign, then IFERROR followed by an opening parenthesis).Inside the parenthesis, type the function you're hoping will work.
Step 2: Error Message (Optional)
If you want to see a message like "Error" or "Data Missing" when the function runs into trouble, type that message in quotes after the comma (,) and press Enter.
IFERROR in SheetsExample of IFERROR Function:
=IFERROR(A:A,"AnyText")
VLOOKUP
You may search for particular data inside the spreadsheet using the vertical lookup, or VLOOKUP, feature.
How to use VLOOKUP in Sheets
Step 1: Start the VLOOKUP
Type =VLOOKUP(. Click the cell with your search code.
VLOOKUP in Google SheetStep 2: Drag down from the plus sign
Select your entire table of codes and details. Select the Column. And click Enter.
Example of VLOOKUP Function:
=VLOOKUP(B5, 'Sheet1'!B: C,2, FALSE)
Conclusion
With the help of this thorough guide, you can finally master Google Sheets! We'll reveal the secrets of everyday functions like SUM, AVERAGE, and COUNT, which will simplify data processing. We don't stop there, though! We'll go further, teaching you how to adjust functions and solve problems in the real world. You'll turn your spreadsheets into dynamic, problem-solving powerhouses capable of handling anything from budget management to survey analysis. Prepare to unlock your data's full potential.
Are spreadsheets limited to basic math?
No, Google Sheets has functions beyond addition and subtraction. You can use them to find specific information (VLOOKUP) or make decisions (IF).
How to use VLOOKUP in Google Sheets
- Organize your data. Enter your data into a spreadsheet or locate an existing table.
- Select an output cell.
- Enter the VLOOKUP function.
- Enter the search_key.
- Set the value range.
- Set the index column.
- Determine is_sorted value.
- Execute the function.
Similar Reads
Less.js List Functions
Less.js (Leaner Style Sheets) is an extension to normal CSS which basically enhances the abilities of the normal CSS code and gives it more functionalities and programmable features. Less.js provides us with many List Functions which are basically functions that we can perform on a list of elements
7 min read
Functions in LISP
A function is a set of statements that takes some input, performs some tasks, and produces the result. Through functions, we can split up a huge task into many smaller functions. They also help in avoiding the repetition of code as we can call the same function for different inputs. Defining Functio
3 min read
Kotlin Higher-Order Functions
Kotlin language has superb support for functional programming. Kotlin functions can be stored in variables and data structures, passed as arguments to and returned from other higher-order functions. Higher-Order FunctionIn Kotlin, a function that can accept a function as a parameter or return a func
6 min read
What is the inline function in JavaScript ?
In JavaScript, an inline function is a special type of anonymous function that is assigned to a variable, or in other words, an anonymous function with a name. JavaScript does not support the traditional concept of inline functions like C or C++. Thus anonymous function and inline function is practi
2 min read
Lambda Functions in LISP
In this article, we will discuss lambda functions in LISP. The Lambda function is used to evaluate a mathematical expression in our program. They are also known as anonymous functions. We can create these functions using lambda expression. Syntax: (lambda (parameters) expression_code) where, The par
1 min read
What is the Function type in TypeScript ?
TypeScript is a JavaScript-based programming language with a typed syntax. It provides improved tools of any size. It adds extra syntax to JavaScript. This helps in facilitating a stronger interaction between you and your editor. It also helps in catching the mistakes well in advance. It uses type
3 min read
TypeScript Generic Functions
TypeScript generic functions allow you to create functions that work with various types while maintaining type safety. By using type parameters, defined within angle brackets (<T>), generics enable functions to operate on different data types without losing the benefits of TypeScript's type-ch
3 min read
Shell Scripting - Functions and it's types
Shell scripting is a powerful tool used to automate tasks in Unix-like operating systems. A shell serves as a command-line interpreter, and shell scripts often perform file manipulation, program execution, and text output. Here, we'll look into functions in shell scripting, exploring their structure
5 min read
Mapping Functions in LISP
In this article, we will discuss mapping functions in lisp. Mapping functions are applied on the list data structure for combining one or more lists of elements. By using this we can perform mathematical operations and can join the elements. The main advantage of this function is that we can combine
2 min read
Function Pointer in C++
Prerequisites: Pointers in C++Function in C++ Pointers are symbolic representations of addresses. They enable programs to simulate call-by-reference as well as to create and manipulate dynamic data structures. Iterating over elements in arrays or other data structures is one of the main use of point
4 min read