If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Author: Oscar Cronquist Article last updated on July 01, 2022

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

The SUMPRODUCT function calculates the product of corresponding values and then returns the sum of each multiplication.

The picture above shows how the SUMPRODUCT works in greater detail.

Formula in cell B7:

=SUMPRODUCT(B2:B4, C2:C4)

The SUMPRODUCT function multiplies cell ranges row by row and then adds the numbers and returns a total. The formula in cell B7 multiples values 1*4= 4, 2*5 = 10 and 3*6 =18 and then adds the numbers 4+10+18 equals 32.

Table of Contents

  1. SUMPRODUCT function syntax
  2. SUMPRODUCT arguments
  3. Things to know about the SUMPRODUCT function
  4. How to use the SUMPRODUCT function
  5. How to use a logical expression in the SUMPRODUCT function
  6. How to use multiple conditions in the SUMPRODUCT function
  7. How to use OR logic in the SUMPRODUCT function
  8. Get Excel *.xlsx file

1. Excel Function Syntax

SUMPRODUCT(array1, [array2], ...)

Back to top

2. Arguments

array1 Required. Required. The first array argument whose numbers you want to multiply and then sum.
[array2] Optional. Up to 254 additional arguments.

Back to top

3. Things to know about the SUMPRODUCT function

The SUMPRODUCT function is one of the most powerful functions in Excel and is one that I often use. I highly recommend learning how it works.

The SUMPRODUCT function requires you to enter it as a regular formula, not an array formula. However, there are exceptions. If you use a logical expression you must enter the formula as an array formula and convert the boolean values to their equivalents.

There are workarounds to this problem which I will demonstrate in the examples below.

Note, Excel 365 subscribers do not need to enter formulas as array formulas in the examples below. Microsoft has changed how array formulas work and they are now called "dynamic arrays".

Back to top

4. How to use the SUMPRODUCT function

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

This example demonstrates how the SUMPRODUCT function works.

Formula in cell B7:

=SUMPRODUCT(B2:B4, C2:C4)

Back to top

4.1 Explaining formula

Step 1  - Multiplying values on the same row

The first array is in cell range B2:B4 and the second array is in cell range C2:C4.

B2:B4*C2:C4

becomes

{1;2;3} * {4;5;6}

becomes

{1*4; 2*5; 3*6}

and returns {4; 10; 18}.

The same calculations are done in column D and shown in column E, see above picture.

Step 2 - Return the sum of those products

{4; 10; 18}

becomes

4 + 10 + 18

and the function returns 32 in cell B7.

The same calculation is done E5, the sum of the products in cell range E2:E4 is calculated in cell E5. See the above picture.

Now you know the basics. Let's move on to something more interesting.

Back to top

5. How to use a logical expression in the SUMPRODUCT function

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

The image above demonstrates a formula in cell G4 that counts how many cells that is equal to the value in cell G2. Note, that this is only an example. I recommend you use the COUNTIF function to count cells based on a condition, it is designed to do that.

Formula in cell G4:

=SUMPRODUCT(--(B2:B6=$G$2))

Back to top

5.1 Explaining formula

Step 1  - Logical expression returns a boolean value that we must convert to numbers

There is only one array in this formula but something else is distorting the picture. A comparison operator (equal sign) and a second cell value (G2) or a comparison value. With these, we have now built a logical expression. This means that the value in cell G2 is compared to all the values in cell range B2:B6 (not case sensitive).

B2:B6=$G$2

becomes

{"Alaska";"California";"Arizona";"California";"Colorado"}="California"

and returns

{FALSE; TRUE; FALSE; TRUE; FALSE}.

They are all boolean values and excel can´t sum these values. We have to convert the values to numerical values. There are a few options, you can:

  • Add a zero - (B2:B6=$G$2)+0
  • Multiply with 1 - (B2:B6=$G$2)*1
  • Double negative signs  --(B2:B6=$G$2)

They all convert boolean values to their numerical equivalents. TRUE is 1 and FALSE is 0 (zero).

--( {FALSE;TRUE;FALSE;TRUE;FALSE})

becomes

{0;1;0;1;0}

Step 2 - Return the sum of those products

{0;1;0;1;0}

becomes

0 + 1 + 0 + 1 + 0

and returns 2 in cell G4. There are two cells containing the value "California" in cell range B2:B6.

You accomplish the same thing using the COUNTIF function or count multiple values in different columns using the COUNTIFS function. In fact, you can count entire records in a data set using the COUNTIFS function.

Back to top

6. How to use multiple conditions in the SUMPRODUCT function

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

This example shows how to use multiple conditions in the SUMPRODUCT function using AND logic. AND logic means that all conditions must be met on a given row in order to add the number to the total.

Formula in cell D10:

=SUMPRODUCT(--(B2:B8=B10), --(C2:C8=C10),D2:D8)

This formula contains three arguments, the SUMPRODUCT function allows you to use up to 30 arguments. You can make the formula somewhat shorter:

=SUMPRODUCT((B2:B8=B10)*(C2:C8=C10)*D2:D8)

This also allows you to have a lot more conditions than 30 if you like and use OR logic if you want. Example 4 demonstrates OR logic.

It is only the available computer memory that is the limit if you use this method. The formula looks like an array formula but no, you are not required to enter it as an array formula.

Back to top

6.1 Explaining formula

Step 1  - Multiplying corresponding components in the given arrays

The first logical expression B2:B8=B10 uses an equal sign to check if the values in cell range B2:B8 are equal to the value in cell B10.

B2:B8=B10

becomes

{"Alaska";"California";"Arizona";"California";"Colorado";"California";"Nevada"}="California"

and returns

{FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; FALSE}.

The second logical expression is C2:C8=C10, the other logical operators you can use are:

  • = equal
  • < less than
  • > greater than
  • <> not equal to
  • <= less than or equal to
  • >= larger than or equal to

C2:C8=C10

becomes

{"Anchorage";"San Diego";"Phoenix";"Los Angeles";"Denver";"Los Angeles";"Las Vegas"}="Los Angeles"

and returns

{FALSE; FALSE; FALSE; TRUE; FALSE; TRUE; FALSE}.

The third and last logical

(B2:B8=B10)*(C2:C8=C10)*D2:D8

becomes

({FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; FALSE})*({FALSE; FALSE; FALSE; TRUE; FALSE; TRUE; FALSE})*{10; 20; 40; 10; 20; 30; 10}

becomes

{0;0;0;1;0;1;0}*{10; 20; 40; 10; 20; 30; 10}

and returns

{0; 0; 0; 10; 0; 30; 0}

Step 2 - Return the sum of those products

{0; 0; 0; 10; 0; 30; 0}

becomes

10 +30

and returns 40 in cell D10.

Back to top

7. How to use OR logic in the SUMPRODUCT function

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

This example shows how to use multiple conditions. A number in cell range D3:D9 is added if the item in cell B12 is found on the corresponding row in cell range B3:B9 OR if the item in C12 is found in cell range C3:C9.

Formula in cell D10:

=SUMPRODUCT(((B3:B9=B12)+(C3:C8=C12))*D3:D9)

Back to top

Explaining formula in cell D10

Step 1 - Compare values to condition

The equal sign lets you compare the condition to values in B3:B9, the result is an array with the same size as B3:B9 containing TRUE or FALSE.

B3:B9=B12

becomes

{"Alaska"; "California"; "Arizona"; "California"; "Colorado"; "California"; "Nevada"}="California"

and returns

{FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; FALSE}.

Step 2 - Compare values to condition

C3:C8=C12

becomes

{"Anchorage"; "San Diego"; "Phoenix"; "Los Angeles"; "Denver"; "Los Angeles"; "Las Vegas"}="Las Vegas"

and returns

{FALSE; FALSE; FALSE; FALSE; FALSE; FALSE; TRUE}.

Step 3 - Apply OR logic

We need to add numbers if at least one of the conditions matches on the same row, this means OR logic.

Mathematical operators between arrays allow you to do more complicated calculations, like this:

* (asterisk) - Both logical expressions must match (AND logic)

+ (plus sign) - Any of the logical expressions must match, it can be all it can be only one. It doesn't matter. (OR logic)

The AND logic behind this is that

  • TRUE * TRUE = TRUE (1)
  • TRUE * FALSE = FALSE (0)
  • FALSE * FALSE = FALSE (0)

The OR logic works like this:

  • TRUE + TRUE = TRUE (1)
  • TRUE + FALSE = TRUE (1)
  • FALSE + FALSE = FALSE (0)

The numbers above show the numerical equivalent of each result. True equals 1 and False equals 0 (zero).

The parentheses shown below let you control the order of calculation, we must do the comparisons before we add the arrays.

(B2:B8=B10)+(C2:C8=C10)

becomes

{FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; FALSE} + {FALSE; FALSE; FALSE; FALSE; FALSE; FALSE; TRUE}

and returns {0; 1; 0; 1; 0; 1; 1}.

Step 4 - Check if result is larger than 0 (zero)

If both values match the conditions the result is two, the result will be twice as much. We can't multiply with two, the larger than character checks if the result is larger than 0 (zero).

((B3:B9=B12)+(C3:C9=C12))>0

becomes

{0; 1; 0; 1; 0; 1; 1}>0

and returns {FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; TRUE}.

Step 5 - Multiply with numbers

((B2:B8=B10)+(C2:C8=C10))*D2:D8

becomes

{FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; TRUE}*D2:D8

becomes

{FALSE; TRUE; FALSE; TRUE; FALSE; TRUE; TRUE}*{10; 20; 40; 10; 20; 30; 10}

and returns {0; 20; 0; 10; 0; 30; 10}.

Step 6 - Add numbers and return total

SUMPRODUCT(((B2:B8=B10)+(C2:C8=C10))*D2:D8)

becomes

SUMPRODUCT({0; 20; 0; 10; 0; 30; 10})

and returns 70.

These expressions check if California is found in cell range B2:B8 or Las Vegas is found in cell range C2:C8. They are found in rows 4, 6,8, and 9.

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

The SUMPRODUCT function sums the corresponding values in column D and returns 70 in cell D10. 20+10+30+10 equals 70.

Back to top

Back to top

Recommended articles

  • SUMPRODUCT function (Microsoft Excel)
  • SUMPRODUCT function (Xelplus)
  • SUMPRODUCT Function (ExcelJet)

'SUMPRODUCT' function examples

The following 78 articles contain the SUMPRODUCT function.


If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

AVERAGE ignore blanks
Table of Contents AVERAGE ignore blanks Average - ignore blanks and errors Average - ignore blanks in non-contiguous cells Weighted […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Calculate machine utilization
Question: I need to calculate how many hours a machine is utilized in a company with a night and day […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Convert dates into date ranges
The array formula in cell D4 extracts the start dates for date ranges in cell range B3:B30, the array formula […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count a specific weekday in a date range
NETWORKDAYS function returns the number of whole workdays between two dates, however the array formula I am going to demonstrate […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count cells with text
The following formula in cell D3 counts cells with values stored as text. =SUMPRODUCT(ISTEXT(B3:B14)*1) In other words, cells containing nothing, errors, […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count dates inside a date range
How do I automatically count dates in a specific date range? Array formula in cell D3: =SUM(IF(($A$2:$A$10<$D$2)*($A$2:$A$10>$D$1), 1, 0)) + […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count groups in calendar
Question: Sam asks: Is there a formula that can count blocks For eg in your picture (see picture above) if […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count rows with data
The formula in cell B17 counts rows in cell range B3:D17 when at least one cell per row contains data. […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count specific WEEKDAYS between two dates
If you want to count specific weekdays like for example Mondays and Wednesdays you need a more complicated array formula. […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count unique distinct months
The formula in cell D18 counts unique distinct months in cell range B3:B16. Formula in D18: =SUMPRODUCT((FREQUENCY(DATE(YEAR($B$3:$B$16), MONTH($B$3:$B$16), 1), DATE(YEAR($B$3:$B$16), […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count unique distinct records
The image above shows a table with 3 columns containing random data. It is quite complicated trying to manually count […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Count unique distinct values
This article describes how to count unique distinct values. What are unique distinct values? They are all values but duplicates are […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Create a random playlist
This article describes how to create a random playlist based on a given number of teams using an array formula. […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Create number series
Excel has a great built-in tool for creating number series named Autofill. The tool is great, however, in some situations, […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Dependent drop-down lists in multiple rows
This article demonstrates how to set up dependent drop-down lists in multiple cells. The drop-down lists are populated based on […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Dynamic team generator
Mark G asks: 1 - I see you could change the formula to have the experssion COUNTIF($C$1:C1, $E$2:$E$5)<5 changed so […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Find empty cells and sum cells above
This article demonstrates how to find empty cells and populate them automatically with a formula that adds numbers above and […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Find latest date based on a condition
This article demonstrates how to return the latest date based on a condition using formulas or a Pivot Table. The […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Free School Schedule Template
This template makes it easy for you to create a weekly school schedule, simply enter the time ranges and the […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Heat map yearly calendar
The calendar shown in the image above highlights events based on frequency. It is made only with a few conditional […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Highlight cells based on ranges
This article demonstrates a Conditional Formatting formula that lets you highlight cells based on numerical ranges specified in an Excel […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Highlight duplicate records
This article shows you how to easily identify duplicate rows or records in a list. What's on this webpage Conditional […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Highlight duplicates with same date, week or month
The image above demonstrates a conditional formatting formula that highlights duplicate items based on date. The first instance is not highlighted, […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Highlight records [AND logic]
The picture above shows you conditional formatting formula that highlights matching records based on criteria in row 3 and 4. […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

How to create running totals
This article demonstrates a formula that calculates a running total. A running total is a sum that adds new numbers […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Identify overlapping date ranges
This article demonstrates formulas that show if a date range is overlapping another date range.  The second section shows how […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If cell contains multiple values
This article demonstrates formulas that perform a partial match for a given cell using multiple strings specified in cells F2 […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Lookup two index columns
Formula in B14: =INDEX(D3:D6, SUMPRODUCT(--(C10=B3:B6), --(C11=C3:C6), ROW(D3:D6)-MIN(ROW(D3:D6))+1)) Alternative array formula #1 in B15: =INDEX(D3:D6, MATCH(C10&"-"&C11, B3:B6&"-"&C3:C6, 0)) Alternative array formula […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Plot date ranges in a calendar part 2
I will in this article demonstrate a calendar that automatically highlights dates based on date ranges, the calendar populates names […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Running totals based on criteria
Andrew asks: LOVE this example, my issue/need is, I need to add the results. So instead of States and Names, […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sort based on frequency and criteria
Andre asks:I am trying to list people with the highest scores based on certain criteria. My data: column A B […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum based on ORAND logic
Question: It's easy to sum a list by multiple criteria, you just use array formula a la: =SUM((column_plane=TRUE)*(column_countries="USA")*(column_producer="Boeing")*(column_to_sum)) But all […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum cells based on criteria
Katie asks: I have 57 sheets many of which are linked together by formulas, I need to get numbers from […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum cells with check boxes
I will now demonstrate with the following table how to add check-boxes and sum enabled check-boxes using a formula. Add […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum numbers between two dates
The formula in cell C15 uses two dates two to filter and then sum values in column C, the SUMIFS […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum unique distinct invoices
Question: I have a long table The key is actually col B&C BUT…sometime there are few rows with same key […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum unique distinct numbers
The image above shows numbers in column B, some of these numbers are duplicates. The formula in D12 adds unique […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Sum unique numbers
Table of Contents Sum unique numbers Get Excel *.xlsx file Sum unique distinct numbers Get Excel *.xlsx file Sum number […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

SUMPRODUCT – multiple criteria
This article demonstrates ways to sum values based on criteria. Table of Contents SUMPRODUCT - based on a list of […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

SUMPRODUCT and IF function
You don't need to use the IF function in a SUMPRODUCT function, it is enough to use a logical expression. […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

SUMPRODUCT and nested IF functions
I have demonstrated in a previous post how to simplify nested IF functions, in this article I will show you how […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

SUMPRODUCT if not blank
This article describes ways to work with the SUMPRODUCT function and blanks, error values, N/A# errors. Table of Contents SUMPRODUCT […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Team Generator
This blog article describes how to create teams randomly. There are twenty names in column B and four teams in […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Tracking a stock portfolio #2
This is follow up post to: Tracking a stock portfolio in excel (auto update) In this post we are going to […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

True round-robin tournament
Mark G asks in Create a random playlist in excel: Can this example be modified to create a true round-robin […]

If the formula in cell d10 is =d8+d9+d10. which of the following terms describes the error?

Working with overlapping date ranges
This article demonstrates formulas that calculate the number of overlapping ranges for all ranges, finds the most overlapped range and […]

Functions in this article



Functions in 'Math and trigonometry' category

The SUMPRODUCT function function is one of many functions in the 'Math and trigonometry' category.


Converts negative numbers to positive numbers.

Calculates the arccosine, or inverse cosine, of a number.

Calculates the inverse hyperbolic cosine of a number.

Calculates the inverse cotangent of a number.

Calculates the inverse hyperbolic cotangent of a number.

Perform different specific functions to a list or database.

Calculates the arcsine of a number.

Calculates the inverse hyperbolic sine of a number.

Calculates the arctangent of a number.

Calculates the arctangent of an angle using specific x- and y-coordinates.

Calculates the inverse hyperbolic tangent of a number.

Converts a number into a text representation with a given radix (base).

Rounds a number up to its nearest multiple.

Returns the number of combinations for a specific number of elements out of a larger group.

Calculates the number of combinations for a given number of elements from a larger group of elements.

Calculates the cosine of an angle.

Calculates the hyperbolic cosine of a number.

Calculates the cotangent of an angle specified in radians.

Calculates the hyperbolic cotangent of a hyperbolic angle.

Calculates the cosecant of an angle (radians).

Converts a text representation of a number in a given base into a decimal number.

Calculates degrees from radians.

Rounds a number up to the nearest even whole number.

Returns e raised to the power of a number, e equals 2.71828182845904.

Returns the factorial of a number.

Returns the double factorial of a number.

Rounds a number to the specified number of decimals, formats the number in decimal format using a period and commas, and returns the result as text.

Rounds a number down to the nearest integer or to the nearest multiple of significance.

Rounds a number down to the nearest integer or nearest multiple of significance.

Calculates the greatest common divisor that divides all given arguments without a remainder.

Removes the decimal part from positive numbers and returns the whole number (integer) except negative values are rounded down to the nearest integer.

Calculates the least common multiple. The least common multiple is the smallest positive integer that is a multiple of all integer arguments. Use the LCM function to find fractions with different denominators.

Lets you name intermediate calculation results which can shorten formulas considerably and improve performance.

Calculates the natural logarithm of a number. Natural logarithms are based on the constant e.

Calculates the logarithm of a number to a specific base.

Calculates the logarithm of a number using the base 10.

Calculates the inverse matrix for a given array.

Calculates the matrix product of two arrays, an array as the same number of rows as array1 and columns as array2.

Returns the remainder after a number is divided by divisor.

Calculates a number rounded to a given multiple.

Calculates the ratio of the factorial of a sum of values to the product of factorials.

Calculates the identity matrix for a given dimension

Returns the number pi (¶).

Calculates a number raised to a power.

Returns the product of the numbers given in the argument.

Returns the integer portion of a division.

Converts degrees to radians.

Calculates a random real number greater than or equal to 0 and less than 1.

Creates an array of random numbers

Returns a random whole number between the numbers you specify.

Rounds a number based on the number of digits you specify.

Rounds a number down based on the number of digits to which you want to round the number.

Calculates a number rounded up based on the number of digits to which you want to round the number.

Calculates the secant of an angle.

Calculates the hyperbolic secant of an angle.

Creates a list of sequential numbers

Calculates the sum of a power series based on a formula.

Returns the sign of a number. 1 for a positiv number, 0 (zero) for a 0 (zero) and -1 for a negative number.

Calculates the sine of an angle.

Calculates the hyperbolic sine of a number.

Calculates the positive square root.

Returns a subtotal from a list or database, you can choose from a variety of arguments that determine what you want the function to do.

Allows you to add numerical values, the function returns the sum in the cell it is entered in. The SUM function is cleverly designed to ignore text and boolean values, adding only numbers.

Sums numerical values based on a condition.

Adds numbers based on criteria.

Calculates the product of corresponding values and then returns the sum of each multiplication.

Calculates the sum of the squares of the arguments.

Calculates the sum of the difference of squares of corresponding values in two arrays.

Calculates the sum of the sum of squares of corresponding values in two arrays.

Calculates the sum of squares of differences of corresponding values in two arrays.

Calculates the tangent of an angle.

Calculates the hyperbolic tangent of a number.

Removes the fractional part of the number to an integer.

Excel function categories

Excel functions that let you resize, combine, and shape arrays.

Functions for backward compatibility with earlier Excel versions. Compatibility functions are replaced with newer functions with improved accuracy. Use the new functions if compatibility isn't required.

Perform basic operations to a database-like structure.

Functions that let you perform calculations to Excel date and time values.

Let's you manipulate binary numbers, convert values between different numeral systems, and calculate imaginary numbers.

Calculate present value, interest, accumulated interest, principal, accumulated principal, depreciation, payment, price, growth, yield for securities, and other financial calculations.

Functions that let you get information from a cell, formatting, formula, worksheet, workbook, filepath, and other entitites.

Functions that let you return and manipulate logical values, and also control formula calculations based on logical expressions.

These functions let you sort, lookup, get external data like stock quotes, filter values based a condition or criteria, and get the relative position of a given value in a specific cell range. They also let you calculate row, column, and other properties of cell references.

You will find functions in this category that calculates random values, round numerical values, create sequential numbers, trigonometry, and more.

Calculate distributions, binomial distributions, exponential distribution, probabilities, variance, covariance, confidence interval, frequency, geometric mean, standard deviation, average, median, and other statistical metrics.

Functions that let you manipulate text values, substitute strings, find string in value, extract a substring in a string, convert characters to ANSI code among other functions.

Get data from the internet, extract data from an XML string and more.

Excel categories


Latest updated articles.

More than 300 Excel functions with detailed information including syntax, arguments, return values, and examples for most of the functions used in Excel formulas.

More than 1300 formulas organized in subcategories.

Excel Tables simplifies your work with data, adding or removing data, filtering, totals, sorting, enhance readability using cell formatting, cell references, formulas, and more.

Allows you to filter data based on selected value , a given text, or other criteria. It also lets you filter existing data or move filtered values to a new location.

Lets you control what a user can type into a cell. It allows you to specifiy conditions and show a custom message if entered data is not valid.

Lets the user work more efficiently by showing a list that the user can select a value from. This lets you control what is shown in the list and is faster than typing into a cell.

Lets you name one or more cells, this makes it easier to find cells using the Name box, read and understand formulas containing names instead of cell references.

The Excel Solver is a free add-in that uses objective cells, constraints based on formulas on a worksheet to perform what-if analysis and other decision problems like permutations and combinations.

An Excel feature that lets you visualize data in a graph.

Format cells or cell values based a condition or criteria, there a multiple built-in Conditional Formatting tools you can use or use a custom-made conditional formatting formula.

Lets you quickly summarize vast amounts of data in a very user-friendly way. This powerful Excel feature lets you then analyze, organize and categorize important data efficiently.

VBA stands for Visual Basic for Applications and is a computer programming language developed by Microsoft, it allows you to automate time-consuming tasks and create custom functions.

A program or subroutine built in VBA that anyone can create. Use the macro-recorder to quickly create your own VBA macros.

UDF stands for User Defined Functions and is custom built functions anyone can create.

A list of all published articles.

When you copy a formula from cell A10 to cell B10 What happens to the cell references in the formula quizlet?

When you copy a formula from cell A10 to cell B10, what happens to the cell references in the formula? Excel changes the cell references in the copied formula to reflect the new location of the formula.

Which of the following cancels a formula before it is completed?

To cancel a formula before it is complete, press Esc.

Which of the following is always the first character in a formula?

A formula always begins with an equal sign (=). Excel for the web interprets the characters that follow the equal sign as a formula.

Which of the following functions counts cells that meet the criteria arguments within a range?

The COUNTIF Function[1] will count the number of cells that meet a specific criterion.