Google Sheets Glossary

Complete reference guide with 129 terms and definitions

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Show All

A

Absolute Cell Reference

Definition

A cell reference that remains fixed when a formula is copied. It's marked by $ signs (for example, $A$1) to lock both column and row.

Example

In the formula =A1*$B$2, the reference to B2 is absolute, so copying the formula to other cells always multiplies by the value in B2.

Add-on

Definition

A third-party or Google-provided extension that adds new capabilities to Google Sheets. Add-ons can automate tasks, create custom menus or dialogues, and connect Sheets to external services.

Example

Installing the DataFlowed add-on lets you import and refresh marketing and e-commerce data directly in your spreadsheet.

Apps Script

Definition

A JavaScript-based scripting platform for automating and extending Google Sheets (and other Workspace apps). You write code in the built-in Script Editor (via Extensions → Apps Script) to add custom functions, macros, and automation.

Example

A script can trigger on a spreadsheet open to send an email, or add a custom menu item.

ARRAYFORMULA

Definition

A function that enables one formula to return values into multiple cells by treating ranges as arrays. It "expands" a formula across rows/columns.

Example

=ARRAYFORMULA(A2:A5 * 2) will double each value in A2:A5 and output all results in the same column.

AutoFill

Definition

A feature where dragging the fill handle (a small square at a cell corner) copies or continues a pattern into adjacent cells.

Example

Enter 1 and 2 in A1:A2, select them, then drag down to autofill a numeric sequence (3, 4, 5, …).

AutoSum

Definition

A quick way to sum a range using the Σ button or menu. It inserts a SUM function automatically.

Example

Select a blank cell below a column of numbers and click AutoSum inserts =SUM(A1:A10) to add them.

AVERAGE

Definition

Returns the arithmetic mean of numeric values in a range.

Example

=AVERAGE(B1:B10) computes the mean of values in cells B1 through B10.

AVERAGEIF

Definition

Returns the average of values in a range that meet a given criterion.

Example

=AVERAGEIF(C1:C10, ">50") averages only the numbers greater than 50 in C1:C10.

AVERAGEIFS

Definition

Returns the average of values in a range that meet multiple criteria.

Example

=AVERAGEIFS(D1:D10, A1:A10, "East", B1:B10, ">100") averages values in D1:D10 where A is "East" and B>100.

B

Bold

Definition

A text style that makes selected cell contents thicker/darker.

Example

Clicking the B icon on the toolbar toggles bold formatting for the selected text or cells.

Border

Definition

A line around a cell or range to visually separate it.

Example

You can add a box border around cells A1:C3 via Format → Borders, which draws lines around or between those cells.

C

Cell

Definition

The intersection of a row and column where you enter data. Each cell has a unique address (like A1 for column A, row 1).

Example

Cell B2 refers to column B, row 2.

Cell Reference

Definition

A way to refer to a cell's value in a formula, using its address (e.g., A1). References can be relative (change when copied) or absolute (fixed).

Example

In =A1+A2, "A1" and "A2" are cell references.

Chart

Definition

A graphical representation of data in Sheets (such as bar, line, pie charts). Charts summarize trends in data.

Example

Selecting a table of sales figures and inserting a column chart shows a visual comparison of monthly sales.

Checkbox

Definition

An interactive box in a cell that can be checked (TRUE) or unchecked (FALSE).

Example

Data → Data validation allows choosing "Checkbox" so clicking the cell toggles a checkmark.

Column

Definition

A vertical series of cells identified by a letter (A, B, C, …).

Example

Column D refers to all cells D1, D2, D3, … downward.

Comment

Definition

A note attached to a cell by a user. Comments allow discussions or suggestions.

Example

A collaborator can right-click a cell and choose "Comment" to leave feedback like, "Check this formula."

CONCAT

Definition

Joins exactly two strings or values together. It is similar to &.

Example

=CONCAT(A1, B1) returns the contents of A1 immediately followed by B1.

Concatenate

Definition

Joins together multiple text strings or cell values into one string.

Example

=CONCATENATE("Sales: ", B1) might produce "Sales: 100" if B1 contains 100.

Conditional Formatting

Definition

A feature to automatically apply formatting (colour, font style) to cells that meet specified rules.

Example

You can set a rule "If A1>100, make cell green," so any cell >100 is highlighted.

COUNT

Definition

Returns the number of numeric values in a range.

Example

=COUNT(A1:A10) counts how many cells in A1:A10 contain numbers (ignores text).

COUNTA

Definition

Returns the number of non-empty values (numbers or text) in a range.

Example

=COUNTA(A1:A10) counts all filled cells in A1:A10.

COUNTIF

Definition

Returns the count of cells in a range that meets a single criterion.

Example

=COUNTIF(A1:A10, ">0") counts how many cells in A1:A10 are greater than 0.

COUNTIFS

Definition

Returns the count of cells meeting multiple criteria across ranges.

Example

=COUNTIFS(A1:A10, ">0", B1:B10, "East") counts rows where A>0 and B="East".

CTRL+C / CTRL+V

Definition

Standard shortcuts for copying (Ctrl+C) and pasting (Ctrl+V) cell contents or ranges.

Example

Pressing Ctrl+C on selected cells duplicates them to the clipboard; Ctrl+V pastes them elsewhere.

CTRL+Z / CTRL+Y

Definition

Undo (Ctrl+Z) reverses the last action, and Redo (Ctrl+Y) reapplies it.

Example

If you accidentally delete a row, pressing Ctrl+Z will restore it.

Currency Formatting

Definition

Displays numbers as monetary values with a currency symbol.

Example

Setting Format → Number → Currency on 1234 changes it to "$1,234.00" (depending on locale).

D

Data Validation

Definition

A feature that restricts what can be entered in a cell. You can, for example, create drop-down lists or enforce number ranges.

Example

Using Data → Data validation to allow only whole numbers between 1 and 100 in cell C1.

F

F4

Definition

Pressing F4 while editing a formula toggles between relative and absolute references for the selected cell reference.

Example

Editing =A1*B1, if the cursor is on A1 and you press F4, it changes to $A$1.

Filter

Definition

A tool that temporarily hides rows or columns that don't meet certain criteria.

Example

Turning on a filter on row 1 allows you to display only rows where the "Status" column equals "Complete".

FILTER

Definition

Returns a subset of a range that meets criteria (the function version of filtering).

Example

=FILTER(A2:B10, B2:B10="Yes") returns only rows where column B is "Yes".

Find & Replace

Definition

Finds text or values in the sheet and (optionally) replaces them.

Example

Ctrl+H opens Find & Replace; searching "Q1" to "Q2" can update all occurrences.

Font Style/Size/Color

Definition

Options to change the appearance of text in cells.

Example

Selecting a cell and choosing a larger font size or a red font colour from the toolbar.

Format Painter

Definition

Copies formatting from one cell and applies it to another.

Example

Select a cell with a blue background, click Format Painter (paint roller icon), then click another cell to apply that blue background.

Formula

Definition

An expression beginning with = that calculates values, possibly using functions.

Example

=A1*B1 is a formula multiplying A1 by B1.

Formula Bar

Definition

The input area above the sheet grid where you enter or edit the contents of the active cell, including formulas.

Example

Clicking cell A1 and typing =SUM(B1:B5) in the formula bar enters that formula into A1.

Freeze

Definition

Keeps selected rows or columns visible while scrolling.

Example

View → Freeze → 1 row locks the top row so it stays in view as you scroll down.

G

Gridlines

Definition

The faint lines separating cells; can be shown/hidden via View → Show → Gridlines.

Example

Unchecking "Gridlines" hides the light cell borders on the sheet.

H

Hide

Definition

Temporarily hides a row or column.

Example

Right-click row 5 and choose "Hide row" to collapse it; hidden rows show a thick line.

HLOOKUP

Definition

Horizontal lookup function; searches for a key in the first row of a range and returns the value from a specified row in that column.

Example

=HLOOKUP("Q1", A1:E2, 2, FALSE) looks in row 1 of A1:E2 for "Q1" and returns the value from row 2 of the same column.

HTML IMPORT Functions

Definition

Functions like IMPORTHTML, IMPORTXML, IMPORTDATA, etc., that fetch and insert data from external sources (web pages, feeds).

Example

=IMPORTHTML("http://example.com/data", "table", 1) would import the first table from that web page into your sheet.

I

IF

Definition

Returns one value if a condition is TRUE, and another if FALSE.

Example

=IF(A1>100, "High", "Low") shows "High" if A1>100, otherwise "Low".

IMPORTRANGE

Definition

Imports a range of cells from another Google Sheets file.

Example

=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abcd123", "Sheet1!A1:C10") pulls cells A1:C10 from the specified spreadsheet.

INDEX

Definition

Returns the content of a cell specified by a row and column number within a range.

Example

=INDEX(B2:D6, 2, 3) returns the cell in the second row and third column of B2:D6. It is often used with MATCH for lookups.

INDIRECT

Definition

Returns the reference specified by a text string. Useful for building dynamic references.

Example

=INDIRECT("B"&A1) if A1 contains 3, this returns the value of cell B3.

Input

Definition

Data entered into a cell. (Not to be confused with formulas.)

Example

Typing "2025" into a cell is input.

Insert

Definition

The menu or function to add elements like rows, columns, charts, images, or functions.

Example

Use Insert → Chart to create a chart from selected data.

Iteration

Definition

When enabled, allows formulas to calculate iteratively (useful for circular references).

Example

Setting File → Settings → Calculation to allow iterative calculations lets you use formulas that reference themselves.

J

JOIN

Definition

Combines elements of an array or range into a single string with a delimiter.

Example

=JOIN(", ", A1:A3) might turn the values in A1:A3 into a comma-separated list.

K

Keyboard Shortcut

Definition

Key combinations for quick actions (e.g., Ctrl+C for copy).

Example

Ctrl+Shift+V pastes values-only (stripping formats/formulas).

L

LEFT/RIGHT/MID

Definition

Text functions extracting parts of a string.

Example

=LEFT(A1,3) returns the first three characters of A1.

Length

Definition

LEN(text) returns the number of characters in text.

Example

=LEN("Hello") returns 5.

Linked Sheet

Definition

A special recent feature to link data (like people, and events) via smart chips.

Example

Typing "@" might allow inserting a person's profile (if part of Workspace).

Log

Definition

Returns the logarithm of a number.

Example

=LOG(100, 10) returns 2.

Lookup

Definition

A family of functions (like VLOOKUP, HLOOKUP, INDEX/MATCH, etc.) used to find data.

Example

VLOOKUP and HLOOKUP are lookup functions.

M

MACROS

Definition

Automated sequences of actions recorded in Sheets. Macros generate Apps Script code.

Example

Recording a macro to format a table will let you play back that formatting step at any time. (See also Script Editor.)

Merge Cells

Definition

Combines adjacent cells into one larger cell.

Example

Selecting A1:B1 and clicking "Merge" creates one cell spanning both A1 and B1.

MIN / MAX

Definition

Return the minimum or maximum of a set of values.

Example

=MIN(A1:A10) finds the smallest number in that range; =MAX finds the largest.

Mobile App

Definition

Google Sheets app on phones/tablets. Many core features are available, though the interface is optimized for touch.

N

Name Range

Definition

A user-defined name for a cell or range.

Example

Naming A1:A10 "Sales" allows using =SUM(Sales) instead of =SUM(A1:A10).

Notes

Definition

Legacy comments that are simple text (pre-2019). Similar to comments but no replies.

Example

Right-click a cell and choose "Insert note" to leave a note.

NOW / TODAY

Definition

TODAY() returns today's date; NOW() returns the current date and time. They update automatically.

Example

=TODAY() might show "2025-06-02" (depending on locale).

Number Format

Definition

How numbers are displayed (e.g., currency, date, percentage).

Example

Applying Date format to "44561" might display as "1/1/2022".

Numbering

Definition

Automatic numbering or indenting of cells/rows.

Example

You can insert a numbering column by dragging a sequence.

O

OFFICE File Formats

Definition

Google Sheets can open/edit Excel (.xlsx), CSV, and others.

Example

Uploading an Excel file into Drive lets you open it in Sheets.

On-Edit Trigger

Definition

A simple trigger that runs an Apps Script function automatically when a user edits the spreadsheet (see Triggers).

Example

A function onEdit(e) in the Script Editor can auto-run after each cell edit.

OR / AND

Definition

Logical functions. AND returns TRUE if all arguments are true; OR if any argument is true.

Example

=AND(A1>0, B1>0) is true only if both A1 and B1 are positive.

P

Paste Special

Definition

Options to paste only certain parts of copied content (values, formats, formulas, etc.).

Example

Ctrl+Shift+V pastes values-only, removing formulas and formatting.

Permission

Definition

The access level granted to a collaborator (Viewer, Commenter, Editor).

Example

When clicking Share, you can make a user "Viewer" (can only read) or "Editor" (can modify).

Pivot Table

Definition

A tool to summarize and analyze large data sets by grouping and aggregating data. It lets you "pivot" data fields into rows, columns, and values to find relationships.

Example

You can create a pivot table for total sales (values) for each product (rows) by month (columns).

Print

Definition

The action of printing or saving as PDF.

Example

File → Print brings up print options and preview.

Profile

Definition

The current Google account using the sheet (shows avatar or initials at top).

Example

Clicking your profile icon can switch accounts or show a workspace profile.

Profile Settings

Definition

The Google account profile affecting locale/format.

Example

Locale settings affect date formats and commas vs. periods in numbers.

Protected Range

Definition

A security feature to restrict who can edit certain cells or ranges.

Example

You can protect range B2:B10 so only specific users (or no one but you) can edit it.

Protected Sheet

Definition

Lock an entire sheet so only certain users can edit it.

Example

Protected sheet options prevent changes to the structure or any cell unless allowed.

Publish to web

Definition

Feature to generate a public link or embed code for viewers (read-only).

Example

File → Publish to the web can create a URL that others can use to see the sheet without logging in.

Q

QUERY

Definition

Runs a SQL-like query (using Google's query language) on a range to filter, aggregate, and sort data.

Example

=QUERY(A2:C100, "SELECT A, SUM(C) WHERE B='East' GROUP BY A") might sum column C by category A for rows where B is "East".

Quick Sum

Definition

The status bar at the bottom that shows SUM (and other aggregations) of selected cells.

Example

Selecting B1:B3 might show "Sum=150" in the bottom-right corner.

R

Range

Definition

A rectangular block of cells, specified by two cell references (e.g. A1:C5).

Example

Range A1:C5 includes all cells from A1 through C5 (3 columns by 5 rows).

Real-time Collaboration

Definition

Google Sheets allows multiple users to view/edit simultaneously, with coloured cursors for each person.

Example

Two users editing at once will each see the other's changes live.

Remove Duplicates

Definition

A feature to delete duplicate rows in a range.

Example

Data → Data cleanup → Remove duplicates will scan a selected range and remove rows that have identical values in all selected columns.

Rename

Definition

Change the names of sheets or objects.

Example

Double-click the sheet tab name to rename it.

REPLACE / SUBSTITUTE

Definition

Text functions. REPLACE replaces part of a text string by position, SUBSTITUTE replaces by matching text.

Example

=SUBSTITUTE("2025-06-02","-","/") changes dashes to slashes.

Row

Definition

A horizontal series of cells identified by a number (1, 2, 3, …).

Example

Row 1 includes cells A1, B1, C1, etc. across the sheet.

S

SCRIPT EDITOR

Definition

The online development environment (Extensions → Apps Script) where you write Apps Script code for the sheet.

Example

You can open Script Editor to create a function that processes form data automatically.

Share

Definition

The action of giving others access to the sheet via email or link.

Example

Clicking the blue "Share" button lets you invite collaborators by email and set their permission level (Viewer/Editor).

Share Permissions

Definition

See Permission (Share) under P.

Shortcut

Definition

See Keyboard Shortcut.

Shortcut keys

Definition

See Keyboard Shortcut.

Sort

Definition

A tool to reorder rows based on column values.

Example

Data → Sort range lets you sort selected rows by a chosen column ascending or descending.

SORT

Definition

Sorts an array or range by one or more columns.

Example

=SORT(A2:B10, 2, TRUE) returns the rows of A2:B10 sorted by column 2 in ascending order.

Spreadsheet

Definition

The entire file (sometimes called "book"), which can contain multiple sheets (tabs).

Example

Opening Google Sheets and creating a new file gives you a blank spreadsheet.

Spreadsheet App

Definition

The Google Sheets application itself (either web or mobile).

Spreadsheet ID

Definition

Unique identifier in the URL for each Google Sheets file (used in scripts or APIs).

Example

In the URL docs.google.com/spreadsheets/d/abcd123..., "abcd123…" is the spreadsheet ID.

Style

Definition

A set of formatting attributes (font, colour, etc.) that can be reused (similar to themes).

Example

Custom styles aren't as formal in Sheets as in Docs, but one can quickly apply a consistent format via the Paint format tool.

Subscript/Superscript

Definition

Small text above/below the normal line (available under Format → Text).

Example

H₂O (subscript 2) or x² (superscript 2).

T

Table

Definition

See IMPORTHTML under H.

Template

Definition

A pre-made sheet layout.

Example

Google Sheets offers templates (File → New → From template) for budgets, calendars, etc.

TEXT

Definition

Formats a number using a format string.

Example

=TEXT(TODAY(), "MMMM D, YYYY") might return "June 2, 2025".

Text Functions

Definition

A family of functions (e.g., CONCAT, LEFT, UPPER) that manipulate text.

Example

=UPPER(A1) changes the text in A1 to uppercase.

Timeline

Definition

A specialized chart type (via add-on) to visualize chronological data (timeline charts).

Example

Using an add-on, you might create a timeline of project tasks. (Not a built-in core feature.)

Tips

Definition

Google Sheets often shows helpful tips or suggestions (like pivot table suggestions under the Explore feature).

Example

Clicking "Explore" in the bottom right can suggest charts and pivots based on your data.

Titles

Definition

Text labels such as chart titles or header rows.

Example

A chart might have the title "Sales Over Time".

Toolbar

Definition

The row of icons/buttons (formatting tools, etc.) under the menu bar.

Example

The bold/italic/underline buttons are on the toolbar.

Transpose

Definition

Flips the orientation of a range (rows to columns or vice versa).

Example

=TRANSPOSE(A1:C3) converts that 3×3 range into a 3×3 range rotated.

Trigger

Definition

An event that runs an Apps Script function automatically (see Triggers below).

Example

On open or "On edit" triggers can run scripts without user input.

U

UNDERSCORE / STRIKETHROUGH

Definition

Text decorations.

Example

Format → Text → Strikethrough puts a line through text. Underscore characters can be typed but there is no special formatting for underlining in Sheets (use Format → Text → Underline).

UNDO / REDO

Definition

See CTRL+Z / CTRL+Y under C.

URL Import Functions

Definition

Functions like IMPORTDATA, IMPORTFEED, IMPORTHTML, etc., that fetch data from web resources.

Example

=IMPORTFEED("http://example.com/rss", "/rss/channel/item/title", FALSE, 3) imports RSS feed titles.

V

VALUE

Definition

Converts text that looks like a number into a numeric value.

Example

=VALUE("123") yields the number 123.

Version History

Definition

A log of all changes saved over time.

Example

File → Version history → See version history lets you view or restore past versions of the sheet.

VIEW

Definition

The menu contains options for zoom, freeze, gridlines, protected sheets, and view-specific actions.

Example

View → Show → Gridlines toggle the grid on/off.

View Permissions

Definition

Another way to say share permissions.

Example

When sharing, setting someone as "Viewer" means they have view-only permission.

VLOOKUP

Definition

Vertical lookup; searches for a key in the first column of a range and returns a value from another column in the same row.

Example

=VLOOKUP("Orange", A2:C100, 3, FALSE) finds "Orange" in A2:A100 and returns the corresponding value from column C.

W

Web App

Definition

A published Apps Script project that can be accessed via a URL.

Example

You could write a script that takes input from a web form and writes to your sheet.

Web Functions

Definition

Functions like IMPORTHTML, IMPORTXML, etc., that pull data from web pages.

Example

=IMPORTXML("http://example.com", "//h1") fetches an HTML element from a website.

Wildcards

Definition

Special characters for pattern matching (used in functions like COUNTIF). "*" matches any sequence of characters; "?" matches any single character.

Example

=COUNTIF(A1:A10,"A*") counts cells starting with "A".

Workbook

Definition

Though Google Sheets doesn't use this term (it's a worksheet in Sheets), it refers to an entire spreadsheet file.

Worksheet / Sheet

Definition

A single tab in a spreadsheet (often called a "worksheet" in Excel).

Example

A file might have sheets named "January," "February," etc. The tabs at the bottom let you switch between sheets.

Wrapping

Definition

Controls how the text fits in a cell (overflow, wrap, or clip).

Example

With a wrap on, long text will break into multiple lines within the cell.

Wrap Text

Definition

Makes long text wrap to a new line within its cell.

Example

Format → Text → Wrap lets the entire cell content be visible on multiple lines.

X

X Axis

Definition

The horizontal axis of a chart.

Example

In a line chart of sales over months, the months run along the X-axis.

XLOOKUP

Definition

A newer lookup function that can search to the left and supports flexible return ranges. (Introduced in Google Sheets in 2024.)

Example

=XLOOKUP("Item", A2:A100, C2:C100) finds "Item" in A2:A100 and returns corresponding values from C2:C100. It is more powerful than VLOOKUP/HLOOKUP.

XML Functions

Definition

IMPORTXML imports structured data (HTML/XML) using XPath.

Example

=IMPORTXML("http://example.com","//title") fetches the page title.

Y

Y-Axis

Definition

The vertical axis of a chart.

Example

In a bar chart of sales, the sales amount is on the Y-axis.

YEAR

Definition

Extracts the year from a date.

Example

=YEAR("2025-06-02") returns 2025.

Z

Zoom

Definition

Adjusts the magnification of the sheet view (e.g., 100%, 200%).

Example

Click the Zoom drop-down (bottom bar or View menu) to change zoom.

Stop Juggling Dashboards. Start Growing Get your data flowing today, free plan available.