Skip to main content

Understanding Arguments/Inputs, and Outputs in Google Sheets Formulas (EN)

Understanding Arguments/Inputs, and Outputs in Google Sheets Formulas

Ira Kamshov avatar
Written by Ira Kamshov
Updated over 10 months ago

✨ What Are Arguments/Inputs and Outputs?


In Google Sheets, formulas rely on different components to function correctly:

  • Inputs – The values or references provided to a formula. These can be Scalars, Ranges, Arrays, Boolean values, and Expressions. Arguments of a function are the specific inputs that the function requires to operate. Each function has a predefined structure, and arguments/inputs must be provided in the correct order and type.

  • Outputs – The result that a formula returns. These can be Scalars, Arrays, Boolean values, or Errors.

Understanding these components is essential for writing, debugging, and optimizing formulas effectively. In this article, you will learn how to know the arguments of a function and its detailed documentation in Google spreadsheets.

πŸ” How to Identify Formula Components in Google Sheets


πŸ“Œ Checking Formula Arguments

When using a function in Google Sheets, the arguments appear as a tooltip while typing the formula.

  1. Start typing a function (e.g., =SUM().

  2. A small pop-up will display the required arguments.

  3. Each argument is separated by a comma and follows a specific order.

πŸ’‘ Tip: Hover over a function in the formula bar to see argument details.

πŸ“Œ Finding Function Documentation

Google Sheets provides built-in documentation for functions.

To access it:

  1. Type = followed by a function name (e.g., =SUM).

  2. Click on the down arrow that appears at the end of the small green pop-up, and it will expand

  3. Scroll down on the expanded pop-up, and you will see the β€œLearn more option”

  4. Click on it, and a Help panel will open. There, you can go even deeper with the explanations, including examples

πŸ—οΈ Example: Input and Output Types in Action


Let's analyze the function FILTER, which returns specific values based on a condition.

πŸ“Œ Formula:

=FILTER(A2:A6, C2:C6="Completed")

πŸ”Ή Inputs:

  • A2:A6 β†’ A range (list of data).

  • C2:C6="Completed" β†’ A logical condition that filters the range.

πŸ”Ή Output:

  • Returns an array containing only the matching values from A2:A6.

🎯 Input and Output Type Variations with Examples

πŸ“‘ Check πŸ“Š Google Sheets-Link, which includes a dataset with example formulas!

πŸ› οΈ Practice and Experiment


The best way to master formulas is to experiment with different functions and observe how inputs affect the output. Try modifying arguments and see how results change!

Did this answer your question?