Google Sheets is a versatile, cloud-based spreadsheet tool that allows users to create, edit, and share data online. Whether you're managing a business, organizing school work, or performing data analysis, learning Google Sheets formulas can significantly enhance your productivity. With the right formulas, you can simplify calculations, automate tasks, and create dynamic reports, saving both time and effort.
In this article, we’ll cover essential Google Sheets formulas list you need to know—from simple calculations like SUM to more advanced functions like VLOOKUP. This article will help both beginners and experienced users maximize the potential of Google Sheets..

A Google Sheets formula is a preset operation that allows users to automate calculations, sort data, or manipulate information automatically. Instead of manually entering values, formulas let you work more efficiently by instructing Google Sheets to perform tasks on your behalf.
By learning how to use formulas in Google Sheets, you’ll be able to automate tasks such as adding up numbers, calculating averages, and even pulling data from the internet. These formulas can transform how you manage data, boosting your workflow and productivity.
Here are some Basic Information related to Google Sheets:
- Function: A preset formula that makes it easy to perform complex calculations.
- Cell: The boxes where you put data or formulas in a spreadSheets.
- Range: A selection of cells you want to use in your formula.
- Sum: Add up all the numbers in a range.
- Average: Finds the middle number of a range.
- IF statement: A formula that does something if a condition is true and something else if it's not.
Google Sheets formulas are essential for increasing accuracy and productivity when working with spreadsheets. Here’s why mastering these formulas is crucial:
Automate Repetitive Tasks: You can automate calculations and data manipulation, reducing the risk of errors.
Improve Efficiency: With formulas, you save time on manual data entry and avoid mistakes that can arise from doing everything manually.
Complex Data Analysis: Whether it's for business reports or school projects, Google Sheets formulas for data analysis allow users to create dynamic reports that update automatically as data changes.
Make Data-Driven Decisions: With formulas like IF and VLOOKUP, you can perform logical tests and retrieve specific data, which is key in making informed decisions quickly.
Here's some essential Google Sheets formula list that you should master to simplify your workflow:
1. SUM: =SUM(range)
Adds up values in a range of cells. This is one of the most basic yet powerful formulas.
For example, =SUM(A1:A10) adds all values from H4 to H7
.webp)
2. AVERAGE: =AVERAGE(range)
Calculates the average of values in a range of cells. For instance, =AVERAGE(B1:B5) calculates the average of the values in those cells.
.webp)
3. IF: =IF(condition, value_if_true, value_if_false)
Makes a decision based on a condition. This is one of the best Google Sheets formulas for decision-making.
For example, =IF(F4 > 20000, "Yes", "No") checks if the value in F4 is greater than 20000.
.webp)
4. VLOOKUP: =VLOOKUP(search_key, range, index, [is_sorted])
Searches for a value in the first column of a range and returns a value in the same row from another column. This formula is invaluable for Google Sheets for business and data retrieval tasks.
![=VLOOKUP(search_key, range, index, [is_sorted])](https://media.geeksforgeeks.org/wp-content/uploads/20240413234437/4-(1).webp)
5. COUNTIF: =COUNTIF(range, criteria)
Counts the number of cells within a range that meet a specific condition.
For example, =COUNTIF(b2:b5, "30") counts how many values in the range are 30.
.webp)
6. SUMIF: =SUMIF(range, criteria, [sum_range])
Adds up values in a range that meet a condition. For example, =SUMIF(B2:B5, ,B2, C2:C5) will add up all values.
![=SUMIF(range, criteria, [sum_range])](https://media.geeksforgeeks.org/wp-content/uploads/20240413234515/6-(1).webp)
7. CONCATENATE: =CONCATENATE(string1, string2, ...)
Joins two or more strings of text together. This is useful for combining information from different cells,
such as =CONCATENATE(B2,B3,B4,B5) to combine first and last names.
.webp)
8. DATE =DATE(year, month, day)
Returns a date formatted as "year, month, day". You can use =DATE(2024, 4, 13) to return April 13, 2024.webp)
9. NOW =NOW()
Returns the current date and time. This is useful when you need to add timestamps in your data.

10. COUNTIFS: =COUNTIFS(range1, criteria1, range2, criteria2, ...)
Counts the number of cells that meet multiple conditions. Example: =COUNTIFS(A1:A10, ">50", B1:B10, "Yes").
11. SUMIFS: =SUMIFS(sum_range, criteria_range1, criteria1, ...)
Adds values in a range that meet multiple criteria. Example: =SUMIFS(A1:A10, B1:B10, "Yes", C1:C10, ">50").
12. SPLIT: =SPLIT(text, delimiter)
Splits the contents of a cell based on a delimiter. Example: =SPLIT(A2," ") splits text into separate cells where there is a space.
13. SORT: =SORT(range, sort_column, is_ascending)
Sorts a range of data based on a specific column. Example: =SORT(A2:A10,1,TRUE) sorts the data in column A in ascending order.
14. IFERROR: =IFERROR(value, value_if_error)
Returns a value if no error occurs, and an alternative value if there is an error. Example: =IFERROR(A1/B1, "Error").
15. MINUS: =MINUS(value1, value2)
Subtracts one value from another. Example: =MINUS(A1, B1).
16. DIVIDE: =DIVIDE(dividend, divisor)
Divides one number by another. Example: =DIVIDE(A1, B1).
17. MULTIPLY: =MULTIPLY(factor1, factor2)
Multiplies one value by another. Example: =MULTIPLY(A1, B1).
18. TO_DOLLARS: =TO_DOLLARS(value)
Converts a value into a dollar amount. Example: =TO_DOLLARS(A1) converts the value in cell A1 into dollars.
19. TO_PERCENT: =TO_PERCENT(value)
Converts a value to a percentage. Example: =TO_PERCENT(0.25) converts 0.25 to 25%.
20. EXACT: =EXACT(value1, value2)
Checks if two values are identical. Example: =EXACT(A1, B1) returns TRUE if A1 and B1 are exactly the same.
21. MAX: =MAX(range)
Finds the highest value in a range of cells. Example: =MAX(A1:A10).
22. MIN: =MIN(range)
Finds the lowest value in a range of cells. Example: =MIN(A1:A10).
For users looking for more advanced operations, these advanced Google Sheets formulas will help you handle complex data more effectively:
ARRAYFORMULA(A1:A10 + B1:B10)
Performs operations on multiple rows at once. It’s a powerful formula for performing calculations across entire arrays of data.
2. IMPORTRANGE
IMPORTRANGE("URL", "Sheet1!A1:C10")
Imports data from another Google Sheets file, allowing for cross-file data analysis and collaboration.
3. INDEX-MATCH
INDEX(B2:B10, MATCH("SearchKey", A2:A10, 0))
This combination of formulas is a more flexible alternative to VLOOKUP, giving users more control over data retrieval.
Use the minus symbol (-) for subtraction. Example: =A1 - B1.
Calculate percentages by dividing two numbers and multiplying by 100. Example: =(A1/B1) * 100.
Use the multiplication symbol (*). Example: =A1 * B1.
FIND and REPLACE:
To find and replace values, use the menu: Edit > Find and replace.
To find duplicates, use COUNTIF. Example: =COUNTIF(A:A, A1) > 1.
How to Use Google Sheets for Data Analysis
Google Sheets is not just for simple calculations. By mastering formulas, you can use it for powerful data analysis. Formulas like SUMIF, COUNTIF, and VLOOKUP help automate and analyze large sets of data, allowing you to quickly find trends, create reports, and generate summaries.
For businesses, formulas like VLOOKUP and IMPORTRANGE are invaluable in pulling together data from multiple sources. By learning Google Sheets for business, you can automate processes, increase accuracy, and save time.
How to Automatically Calculate in Google Sheets
Wondering how to make Google Sheets calculate automatically? Here’s how:
- Enter your formulas into the cells where you want the calculations to appear. For example, if you want to sum a range of cells, enter =SUM(A1:A5).
- Automatic Updates: Whenever you change the values in the referenced cells, Google Sheets will automatically update the result of the formula. This helps ensure that your data is always accurate without having to refresh or recalculate manually.
Conclusion
Mastering Google Sheets formulas is essential for anyone looking to improve their workflow and perform accurate data analysis. By understanding basic operations like SUM, AVERAGE, and IF, and exploring more advanced functions like ARRAYFORMULA and VLOOKUP, you can save time and eliminate errors in your data management.
Whether you're using Google Sheets for business, school projects, or personal finances, these formulas will help you automate tasks, make informed decisions, and increase your productivity. Don’t hesitate—start experimenting with these best Google Sheets formulas today and unlock the full potential of this powerful tool!
Similar Reads
Google Sheets: Creating Simple Formulas Google Sheets is a powerful spreadsheet tool that allows you to create and edit sheets with ease. It also boasts real-time collaboration features, making it perfect for teamwork. But where Sheets truly shines is in its formula capabilities. Formulas can automate calculations, saving you time and eff
6 min read
Amazing Google Sheet Tips and Tricks Google Sheets has some amazing tips and tricks that will boost your productivity and improve your spreadsheet. Google Sheets offers many features like changing cell colours, font style, formatting, etc. Let's learn these skills to be more efficient and productive.Google Sheet Tips and Tricks Table o
4 min read
How to Copy a Formula Down an Entire Column in Google Sheets Imagine having a superpower that can enhance your productivity in Google Sheets. Well, copying formulas down an entire column in the one. Instead of doing the same calculations again and again, you can easily do your tasks by using this method. It's like having a clone army of formulas at your comma
5 min read
Google Sheets IF Function: Ultimate Guide The IF function in Google Sheets is one of the most versatile tools for logical testing and decision-making. Whether youâre working with numbers, text, or dates, this function allows you to evaluate conditions and define custom outputs based on whether those conditions are true or false. From simple
12 min read
What Is Google Sheets and How to use it? Google Sheets designed as part of Google Workspace (formerly G Suite), Google Sheets works seamlessly online, enabling users to manage data, perform calculations, and visualize information through charts and graphs. It is a popular alternative to Microsoft Excel, offering accessibility across device
5 min read
How to Use Solver in Google Sheets Google Sheets is a versatile tool that offers a range of features to help users analyze data, make decisions, and optimize outcomes. One such feature is Solver, a powerful tool used for solving optimization problems in spreadsheets. Solver in Google Sheets allows you to find the best solution for a
5 min read