国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
Quick Links
The AGGREGATE Syntax
The Reference Form Syntax
The Array Form Syntax
Functions and Exclusions (Arguments a and b)
Example 1: Using AGGREGATE to Ignore Errors
How to Fix Common Formula Errors in Microsoft Excel
Everything You Need to Know About Spill in Excel
Things to Note When Using the AGGREGATE Function
Home Software Tutorial Office Software How to Use Excel's AGGREGATE Function to Refine Calculations

How to Use Excel's AGGREGATE Function to Refine Calculations

Apr 12, 2025 am 12:54 AM

  • The AGGREGATE Syntax
  • Example 1: Using AGGREGATE to Ignore Errors
  • Example 2: Using AGGREGATE to Ignore Hidden Rows (Reference)
  • Example 3: Using AGGREGATE to Ignore Hidden Rows (Array)
  • Things to Note When Using the AGGREGATE Function

Excel's AGGREGATE function lets you perform calculations whilst ignoring hidden rows, errors, or other functions that appear in the data. It's similar to the SUBTOTAL function but provides more calculation options and gives you more control over what you want to exclude from the calculation.

The AGGREGATE Syntax

Before we look at some examples of the AGGREGATE function in use, let's see how it works. The AGGREGATE function has two syntaxes—one for references and one for arrays—though you don't need to get yourself tied up in knots over which one you're using, as Excel selects the relevant one depending on the arguments you input. You can see both syntaxes in use when I show you some examples soon.

The Reference Form Syntax

The syntax for the reference form of the AGGREGATE function is:

=AGGREGATE(<em>a</em>,<em>b</em>,<em>c</em>,<em>d</em>)

where

  • a (required) is a number that represents the function you want to use in the calculation,
  • b (required) is a number that defines what you want the calculation to ignore,
  • c (required) is the range of cells on which the function will be applied, and
  • d (optional) is the first of up to 252 additional arguments that specify further ranges.

The Array Form Syntax

On the other hand, if you're working with arrays, the syntax is:

=AGGREGATE(<em>a</em>,<em>b</em>,<em>c</em>,<em>d</em>)

where

  • a (required) is a number that represents the function you want to use in the calculation,
  • b (required) is a number that defines what you want the calculation to ignore,
  • c (required) is the array of values on which the function will be applied, and
  • d is the second argument required by array functions like LARGE, SMALL, PERCENTILE.INC, and others.

Functions and Exclusions (Arguments a and b)

When entering arguments a and b in either syntax form above, you'll have various options to choose from.

The table below shows the different functions you can use in the AGGREGATE calculation (argument a). Even though you might be tempted to type the function name, remember that this argument must be a number that represents the function you want to use. Functions 1 to 13 are for use with the reference form syntax, and functions 14 to 19 are for use with the array form syntax.

Number

Function

What It Calculates

1

AVERAGE

The arithmetic mean

2

COUNT

The number of cells that contain numeric values

3

COUNTA

The number of cells that are not empty

4

MAX

The largest value

5

MIN

The smallest value

6

PRODUCT

A multiplication

7

STDEV.S

The simple standard deviation

8

STDEV.P

The population-based standard deviation

9

SUM

An addition

10

VAR.S

The simple variation

11

VAR.P

The population-based variance

12

MEDIAN

The middle value

13

MODE.SNGL

The most frequently occurring number

14

LARGE

The nth largest value

15

SMALL

The nth smallest value

16

PERCENTILE.INC

The nth percentile, with the first and last values included

17

QUARTILE.INC

The nth quartile, with the first and last values included

18

PERCENTILE.EXC

The nth percentile, with the first and last values excluded

19

QUARTILE.EXC

The nth quartile, with the first and last values excluded

This table lists the numbers you can input to exclude certain values when creating your AGGREGATE formula (argument b):

Number

What Is Ignored

0

Nested SUBTOTAL and AGGREGATE functions

1

Hidden rows, and nested SUBTOTAL and AGGREGATE functions

2

Errors, and nested SUBTOTAL and AGGREGATE functions

3

Hidden rows, error values, and nested SUBTOTAL and AGGREGATE functions

4

Nothing

5

Hidden rows only

6

Errors only

7

Hidden rows and errors

Now, let's look at some examples of how you can use the AGGREGATE function in real-world scenarios.

Example 1: Using AGGREGATE to Ignore Errors

This Excel spreadsheet contains a list of soccer players, the number of games they've played, the number of goals they've scored, and their game-per-goal ratios. Your aim is to work out the average game-per-goal ratio for all the players combined.

How to Use Excel's AGGREGATE Function to Refine Calculations

If you were to use the AVERAGE function alone by typing:

=AVERAGE(Player_Goals[Games per goal])

into cell C1, this would return an error, because the referenced range contains #DIV/0! errors.

How to Use Excel's AGGREGATE Function to Refine Calculations

How to Use Excel's AGGREGATE Function to Refine Calculations

Related
How to Fix Common Formula Errors in Microsoft Excel

Find out what that error means and how to fix it.

Instead, using the AGGREGATE function gives you the option to ignore these errors and return the average for the remaining data. To do this, in cell C2, you need to type:

=AGGREGATE(1,6,Player_Goals[Games per goal])

where

  • 1 (argument a) represents the AVERAGE function,
  • 6 (argument b) tells Excel to ignore errors, and
  • Player_Goals[Games per goal] is the reference.

How to Use Excel's AGGREGATE Function to Refine Calculations

Example 2: Using AGGREGATE to Ignore Hidden Rows (Reference)

Using the same spreadsheet, your next target is to calculate the total number of goals the team has scored.

Example 3: Using AGGREGATE to Ignore Hidden Rows (Array)

Next, let's say you wanted to list the two highest goal tallies for players who have played 20 games or fewer.

How to Use Excel's AGGREGATE Function to Refine Calculations

You could apply the filter first and then generate your formula, but for the purposes of this demonstration, let's create the formula first.

In cell C1, type:

=AGGREGATE(14,5,Player_Goals[Goals scored],{1;2})

where

  • 14 (argument a) represents the LARGE function,
  • 5 (argument b) tells Excel to ignore hidden rows,
  • Player_Goals[Goals scored] is the array of values, and
  • {1;2} tells Excel that you want it to return the largest (1) and second-largest values (2) on separate rows (;).

When you press Enter, notice that the result is a spilled array covering cells C1 and C2 because you told Excel to return the top two values.

How to Use Excel's AGGREGATE Function to Refine Calculations

How to Use Excel's AGGREGATE Function to Refine Calculations

Related
Everything You Need to Know About Spill in Excel

It's not worth crying over spilled references.

Now, filter the Games Played column to include only those players who have played 20 games or fewer, and see that the result of the AGGREGATE formula you entered earlier changes to ignore the hidden rows.

How to Use Excel's AGGREGATE Function to Refine Calculations

Things to Note When Using the AGGREGATE Function

Before you go ahead and use the AGGREGATE function in your own Excel workbooks, take a moment to note the following pointers:

  • Excel's AGGREGATE function works with vertical ranges only, not horizontal ranges. So, when you reference a horizontal range, AGGREGATE will not ignore rows in hidden columns.
  • Argument c in the AGGREGATE formula cannot be the same cell or range of cells across multiple worksheets (also known as 3D references).
  • Even though the AGGREGATE function is a great way to bypass errors in calculations, don't get into the habit of ignoring errors altogether. They're there for a reason and could help you troubleshoot issues with your data.
  • The array form of the AGGREGATE function will not ignore hidden rows, nested subtotals, or nested aggregates if the array argument includes a calculation.

Another way to hide rows in Excel tables so that the AGGREGATE function only includes what's showing is by inserting slicers, interactive buttons that you can click to make filtering much more straightforward.

The above is the detailed content of How to Use Excel's AGGREGATE Function to Refine Calculations. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel Jun 19, 2025 am 03:03 AM

Quick Links Parentheses: Controlling the Order of Opera

Outlook Quick Access Toolbar: customize, move, hide and show Outlook Quick Access Toolbar: customize, move, hide and show Jun 18, 2025 am 11:01 AM

This guide will walk you through how to customize, move, hide, and show the Quick Access Toolbar, helping you shape your Outlook workspace to fit your daily routine and preferences. The Quick Access Toolbar in Microsoft Outlook is a usefu

Google Sheets IMPORTRANGE: The Complete Guide Google Sheets IMPORTRANGE: The Complete Guide Jun 18, 2025 am 09:54 AM

Ever played the "just one quick copy-paste" game with Google Sheets... and lost an hour of your life? What starts as a simple data transfer quickly snowballs into a nightmare when working with dynamic information. Those "quick fixes&qu

Don't Ignore the Power of F9 in Microsoft Excel Don't Ignore the Power of F9 in Microsoft Excel Jun 21, 2025 am 06:23 AM

Quick LinksRecalculating Formulas in Manual Calculation ModeDebugging Complex FormulasMinimizing the Excel WindowMicrosoft Excel has so many keyboard shortcuts that it can sometimes be difficult to remember the most useful. One of the most overlooked

6 Cool Right-Click Tricks in Microsoft Excel 6 Cool Right-Click Tricks in Microsoft Excel Jun 24, 2025 am 12:55 AM

Quick Links Copy, Move, and Link Cell Elements

Prove Your Real-World Microsoft Excel Skills With the How-To Geek Test (Advanced) Prove Your Real-World Microsoft Excel Skills With the How-To Geek Test (Advanced) Jun 17, 2025 pm 02:44 PM

Whether you've recently taken a Microsoft Excel course or you want to verify that your knowledge of the program is current, try out the How-To Geek Advanced Excel Test and find out how well you do!This is the third in a three-part series. The first i

How to recover unsaved Word document How to recover unsaved Word document Jun 27, 2025 am 11:36 AM

1. Check the automatic recovery folder, open "Recover Unsaved Documents" in Word or enter the C:\Users\Users\Username\AppData\Roaming\Microsoft\Word path to find the .asd ending file; 2. Find temporary files or use OneDrive historical version, enter ~$ file name.docx in the original directory to see if it exists or log in to OneDrive to view the version history; 3. Use Windows' "Previous Versions" function or third-party tools such as Recuva and EaseUS to scan and restore and completely delete files. The above methods can improve the recovery success rate, but you need to operate as soon as possible and avoid writing new data. Automatic saving, regular saving or cloud use should be enabled

5 New Microsoft Excel Features to Try in July 2025 5 New Microsoft Excel Features to Try in July 2025 Jul 02, 2025 am 03:02 AM

Quick Links Let Copilot Determine Which Table to Manipu

See all articles