Excel array formulas, functions and constants - examples and guidelines

In this tutorial, you will learn what an Excel array formula is, how to enter it correctly in your worksheets, and how to use array constants and array functions.

Array formulas in Excel are an extremely powerful tool and one of the most difficult to master. A single array formula can perform multiple calculations and replace thousands of usual formulas. And still, 90% of users have never used array functions in their worksheets simply because they are scared to start learning them.

Indeed, array formulas one of the most confusing Excel features to learn. The aim of this tutorial is to make the learning curve as easy and smooth as possible.

What is an array in Excel?

Before we start on array functions and formulas, let's figure out what the term "array" means. Essentially, an array is a collection of items. The items can be text or numbers and they can reside in a single row or column, or in multiple rows and columns.

For example, if you put your weekly grocery list into an Excel array format, it would look like:

{"Milk", "Eggs", "Butter", "Corn flakes"}

Then, if you select cells A1 through D1, enter the above array preceded by an equal sign (=) in the formula bar and press CTRL + SHIFT + ENTER, you will get the following result:
Creating an array in Excel

What you have just done is create a one-dimensional horizontal array. Nothing dreadful so far, right?

What is an array formula in Excel?

The difference between an array formula and a regular formula is that an array formula processes several values instead of just one. In other words, an array formula in Excel evaluates all individual values in an array and performs multiple calculations on one or several items according to the conditions expressed in the formula.

Not only can an array formula deal with several values simultaneously, it can also return several values at a time. So, the results returned by an array formula is also an array.

Array formulas are available in all versions of Excel 2019, Excel 2016, Excel 2013, Excel 2010, Excel 2007 and lower.

And now, it seems to be the right time for you to create your first array formula.

Simple example of Excel array formula

Suppose you have some items in column B, their prices in column C, and you want to calculate the grand total of all sales.

Of course, nothing prevents you from calculating subtotals in each row first with something as simple as =B2*C2 and then sum those values:
A usual Excel formula

However, an array formula can spare you those extra key strokes since it gets Excel to store intermediate results in memory rather than in an additional column. So, all it takes is a single array formula and 2 quick steps:

  1. Select an empty cell and enter the following formula in it:

    =SUM(B2:B6*C2:C6)

  2. Press the keyboard shortcut CTRL + SHIFT + ENTER to complete the array formula.

    Once you do this, Microsoft Excel surrounds the formula with {curly braces}, which is a visual indication of an array formula.

    What the formula does is multiply the values in each individual row of the specified array (cells B2 through C6), add the sub-totals together, and output the grand total:
    An array formula

This simple example shows how powerful an array formula can be. When working with hundreds and thousands of rows of data, just think how much time you can save by entering one array formula in a single cell.

Why use array formulas in Excel?

Excel array formulas are the handiest tool to perform sophisticated calculations and do complex tasks. A single array formula can replace literally hundreds of usual formulas. Array formulas are very good for tasks such as:

How to enter array formula in Excel (Ctrl + Shift + Enter)

As you already know, the combination of the 3 keys CTRL + SHIFT + ENTER is a magic touch that turns a regular formula into an array formula.

When entering an array formula in Excel, there are 4 important things to keep in mind:

  1. Once you've finished typing the formula and simultaneously pressed the keys CTRL SHIFT ENTER, Excel automatically encloses the formula between {curly braces}. When you select such a cell(s), you can see the braces in the formula bar, which gives you a clue that an array formula is in there.
  2. Manually typing the braces around a formula won't work. You must press the Ctrl+Shift+Enter shortcut to complete an array formula.
  3. Every time you edit an array formula, the braces disappear and you must press Ctrl+Shift+Enter again to save the changes.
  4. If you forget to press Ctrl+Shift+Enter, your formula will behave like a usual formula and process only the first value(s) in the specified array(s).

Because all Excel array formulas require pressing Ctrl + Shift + Enter, they are sometimes called CSE formulas.

Use the F9 key to evaluate portions of an array formula

When working with array formulas in Excel, you can observe how they calculate and store their items (internal arrays) to display the final result you see in a cell. To do this, select one or several arguments within a function's parentheses, and then press the F9 key. To exit the formula evaluation mode, press the Esc key.

In the above example, to see the sub-totals of all products, you select B2:B6*C2:C6, press F9 and get the following result.
Use the F9 key to see how they calculate and store internal arrays.

Note. Please pay attention that you must select some part of the formula prior to pressing F9, otherwise the F9 key will simply replace your formula with the calculated value(s).

Single-cell and multi-cell array formulas in Excel

Excel array formula can return a result in a single cell or in multiple cells. An array formula entered in a range of cells is called a multi-cell formula. An array formula residing in a single cell is called a single-cell formula.

There exist a few Excel array functions that are designed to return multi-cell arrays, for example TRANSPOSE, TREND, FREQUENCY, LINEST, etc.

Other functions, such as SUM, AVERAGE, AGGREGATE, MAX, MIN, can calculate array expressions when entered into a single cell by using Ctrl + Shift + Enter.

The following examples demonstrate how to use a single-cell and multi-cell array formula.

Example 1. A single-cell array formula

Suppose you have two columns listing the number of items sold in 2 different months, say columns B and C, and you want to find the maximum sales increase.

Normally, you would add an additional column, say column D, that calculates the sales change for each product using a formula like =C2-B2, and then find the maximum value in that additional column =MAX(D:D).

An array formula does not need an additional column since it perfectly stores intermediate results in memory. So, you just enter the following formula and press Ctrl + Shift + Enter:

=MAX(C2:C6-B2:B6)
A single-cell MAX array formula

Example 2. A multi-cell array formula in Excel

In the previous SUM example, suppose you have to pay 10% tax from each sale and you want to calculate the tax amount for each product with one formula.

Select the range of empty cells, say D2:D6, and enter the following formula in the formula bar:

=B2:B6 * C2:C6 * 0.1

Once you press Ctrl + Shift + Enter, Excel will place an instance of your array formula in each cell of the selected range, and you will get the following result:
A multi-cell array formula in Excel

Example 3. Using an Excel array function to return a multi-cell array

As already mentioned, Microsoft Excel provides a few so called "array functions" that are specially designed to work with multi-cell arrays. TRANSPOSE is one of such functions and we are going to utilize it to transpose the above table, i.e. convert rows to columns.

  1. Select an empty range of cells where you want to output the transposed table. Since we are converting rows to columns, be sure to select the same number of rows and columns as your source table has columns and rows, respectively. In this example, we are selecting 6 columns and 4 rows.
  2. Press F2 to enter the edit mode.
  3. Enter the formula and press Ctrl + Shift + Enter.

In our example, the formula is:

=TRANSPOSE($A$1:$D$6)

The result is going to look similar to this:
Using an array function in Excel

This is how you use TRANSPOSE as a CSE array formula in Excel 2019 and earlier. In Dynamic Array Excel, this also works as a regular formula. To learn other ways to transpose in Excel, please check out this tutorial: How to switch columns and rows in Excel.

How to work with multi-cell array formulas

When working with multi-cell array formulas in Excel, be sure to follow these rules to get the correct results:

  1. Select the range of cells where you want to output the results before entering the formula.
  2. To delete a multi-cell array formula, either select all the cells containing it and press DELETE, or select the entire formula in the formula bar, press DELETE, and then press Ctrl + Shift + Enter.
  3. You cannot edit or move the contents of an individual cell in an array formula, nor can you insert new cells into or delete existing cells from a multi-cell array formula. Whenever you try doing this, Microsoft Excel will throw the warning "You cannot change part of an array".
  4. To shrink an array formula, i.e. to apply it to fewer cells, you need to delete the existing formula first and then enter a new one.
  5. To expand an array formula, i.e. apply it to more cells, select all cells containing the current formula plus empty cells where you want to have it, press F2 to switch to the edit mode, adjust the references in the formula and press Ctrl + Shift + Enter to update it.
  6. You cannot use multi-cell array formulas in Excel tables.
  7. You should enter a multi-cell array formula in a range of cells of the same size as the resulting array returned by the formula. If your Excel array formula produces an array larger than the selected range, the excess values won't appear on the worksheet. If an array returned by the formula is smaller than the selected range, #N/A errors will appear in extra cells.

If your formula may return an array with a variable number of elements, enter it in a range equal to or larger than the maximum array returned by the formula and wrap your formula in the IFERROR function, as demonstrated in this example.

Excel array constants

In Microsoft Excel, an array constant is simply a set of static values. These values never change when you copy a formula to other cells or values.

You already saw an example of an array constant created from a grocery list in the very beginning of this tutorial. Now, let's see what other array types exist and how you create them.

There exist 3 types of array constants:

1. Horizontal array constant

A horizontal array constant resides in a row. To create a row array constant, type the values separated by commas and enclose then in braces, for example {1,2,3,4}.

Note. When creating an array constant, you should type the opening and closing braces manually.

To enter a horizontal array in a spreadsheet, select the corresponding number of blank cells in a row, type the formula ={1,2,3,4} in the formula bar, and press Ctrl + Shift + Enter. The result will be similar to this:
Horizontal array constant

As you see in the screenshot, Excel wraps an array constant in another set of braces, exactly like it does when you are entering an array formula.

2. Vertical array constant

A vertical array constant resides in a column. You create it in the same way as a horizontal array with the only difference that you delimit the items with semicolons, for example:

={11; 22; 33; 44}
Vertical array constant

3. Two-dimensional array constant

To create a two-dimensional array, you separate each row by a semicolon and each column of data by a comma.

={"a", "b", "c"; 1, 2, 3}
Two-dimensional array constant

Working with Excel array constants

Array constants are one of the cornerstones of an Excel array formula. The following information and tips might help you use them in the most efficient way.

  1. Elements of an array constant

    An array constant can contain numbers, text values, Booleans (TRUE and FALSE) and error values, separated by commas or semicolons.

    You can enter a numerical value as an integer, decimal, or in scientific notation. If you use text values, they should be surrounded in double quotes (") like in any Excel formula.

    An array constant cannot include other arrays, cell references, ranges, dates, defined names, formulas, or functions.

  2. Naming array constants

    To make an array constant easier to use, give it a name:

    • Switch to the Formulas tab > Defined Names group and click Define Name. Alternatively, press Ctrl + F3 and click New.
    • Type the name in the Name
    • In the Refers to box, enter the items of your array constant surrounded in braces with the preceding equality sign (=). For example:

      ={"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"}
      Creating a named array in Excel

    • Click OK to save your named array and close the window.

    To enter the named array constant in a sheet, select as many cells in a row or column as there are items in your array, type the array's name in the formula bar preceded with the = sign and press Ctrl + Shift + Enter.

    The result should resemble this:
    Entering the named array constant in a sheet

  3. Preventing errors

    If your array constant does not work correctly, check for the following problems:

    • Delimit the elements of your array constant with the proper character - comma in horizontal array constants and semicolon in vertical ones.
    • Selected a range of cells that exactly matches the number of items in your array constant. If you select more cells, each extra cell will have the #N/A error. If you select fewer cells, only a part of the array will be inserted.

Using array constants in Excel formulas

Now that you are familiar with the concept of array constants, let's see how you can use arrays informulas to solve your practical tasks.

Example 1. Sum N largest / smallest numbers in a range

You start by creating a vertical array constant containing as many numbers as you want to sum. For example, if you want to add up 3 smallest or largest numbers in a range, the array constant is {1,2,3}.

Then, you take either LARGE or SMALL function, specify entire range of cells in the first parameter and include the array constant in the second. Finally, embed it in the SUM function, like this:

Sum the largest 3 numbers: =SUM(LARGE(range, {1,2,3}))

Sum the smallest 3 numbers: =SUM(SMALL(range, {1,2,3}))

Don't forget to press Ctrl + Shift + Enter since you are entering an array formula, and you will get the following result:

Excel array formula to sum N largest / smallest numbers in the range

In a similar fashion, you can calculate the average of N smallest or largest values in a range:

Average of the top 3 numbers: =AVERAGE(LARGE(range, {1,2,3}))

Average of the bottom 3 numbers: =AVERAGE(SMALL(range, {1,2,3}))

Example 2. Array formula to count cells with multiple conditions

Suppose, you have a list of orders and you want to know how many times a given seller has sold given products.

The easiest way would be using a COUNTIFS formula with multiple conditions. However, if you want to include many products, your COUNTIFS formula may grow too big in size. To make it more compact, you can use COUNTIFS together with SUM and include an array constant in one or several arguments, for example:

=SUM(COUNTIFS(range1, "criteria1", range2, {"criteria1", "criteria2"}))

The real formula may look as follows:

=SUM(COUNTIFS(B2:B9, "sally", C2:C9, {"apples", "lemons"}))
An array formula to count cells with multiple conditions

Our sample array consists of only two elements since the goal is to demonstrate the approach. In your real array formulas, you may include as many elements as your business logic requires, provided that the total length of the formula does not exceed 8,192 characters in Excel 2019 - 2007 (1,024 characters in Excel 2003 and lower) and your computer is powerful enough to process large arrays. Please see the limitations of array formulas for more details.

And here is an advanced array formula example that finds the sum of all matching values in a table: SUM and VLOOKUP with an array constant.

AND and OR operators in Excel array formulas

An array operator tells the formula how you want to process the arrays - using AND or OR logic.

  • AND operator is the asterisk (*) which is the multiplication symbol. It instructs Excel to return TRUE if ALL of the conditions evaluate to TRUE.
  • OR operator is the plus sign (+). It returns TRUE if ANY of the conditions in a given expression evaluates to TRUE.

Array formula with the AND operator

In this example, we find the sum of sales where the sales person is Mike AND the product is Apples:

=SUM((A2:A9="Mike") * (B2:B9="Apples") * (C2:C9))

Or

=SUM(IF(((A2:A9="Mike") * (B2:B9="Apples")), (C2:C9)))
An array formula with the AND operator

Technically, this formula multiplies the elements of the three arrays in the same positions. The first two arrays are represented by TRUE and FALSE values which are the results of comparing A2:A9 to Mike" and B2:B9 to "Apples". The third array contains the sales numbers from the range C2:C9. Like any math operation, multiplication converts TRUE and FALSE to 1 and 0, respectively. And because multiplying by 0 always gives zero, the resulting array has 0 when either or both conditions are not met. If both conditions are met, the corresponding element from the third array gets into the final array (e.g. 1*1*C2 = 10). So, the result of multiplication is this array: {10;0;0;30;0;0;0;0}. Finally, the SUM function adds up the array's elements and return a result of 40.

Excel array formula with the OR operator

The following array formula with the OR operator (+) adds up all sales where the sales person is Mike OR product is Apples:

=SUM(IF(((A2:A9="Mike") + (B2:B9="Apples")), (C2:C9)))
Excel array formula with the OR operator

In this formula, you add up the elements of the first two arrays (which are the conditions you want to test), and get TRUE (>0) if at least one condition evaluates to TRUE; FALSE (0) when all the conditions evaluates to FALSE. Then, IF checks if the result of addition is greater than 0, and if it is, SUM adds up a corresponding element of the third array (C2:C9).

Tip. In modern versions of Excel, there is no need to use an array formula for this kind of tasks - a simple SUMIFS formula handles them perfectly. Nevertheless, the AND and OR operators in array formulas may prove helpful in more complex scenarios, let alone a very good gymnastics of mind : )

Double unary operator in Excel array formulas

If you've ever worked with array formulas in Excel, chances are you came across a few ones containing a double dash (--) and you may have wondered what it was used for.

A double dash, which is technically called the double unary operator or double negative, is used to convert non-numeric Boolean values (TRUE / FALSE) returned by some expressions into 1 and 0 that an array function can understand.

The following example will hopefully make things easier to understand. Suppose you have a list of dates in column A and you want to know how many dates occur in January, regardless of the year.

The following formula will work a treat:

=SUM(--(MONTH(A2:A10)=1))

Since this is an Excel array formula, remember to press Ctrl + Shift + Enter to complete it.

If you are interested in some other month, replace 1 with a corresponding number. For example, 2 stands for February, 3 means March, and so on. To make the formula more flexible, you can specify the month number in some cell, like demonstrated in the screenshot:
Using the double unary operator in Excel array formulas

And now, let's analyze how this array formula works. The MONTH function returns the month of each date in cells A2 through A10 represented by a serial number, which producing the array {2;1;4;2;12;1;2;12;1}.

After that, each element of the array is compared to the value in cell D1, which is number 1 in this example. The result of this comparison is an array of Boolean values TRUE and FALSE. As you remember, you can select a certain portion of an array formula and press F9 to see what that part equates to:
Select a portion of an array formula and press F9 to see what that part equates to.

Finally, you have to convert these Boolean values to 1's and 0's that the SUM function can understand. And this is what the double negative sign is needed for. The first unary coerces TRUE/FALSE to -1/0, respectively. The second one negates the values, i.e. reverses the sign, turning them into +1 and 0, which most of Excel functions can understand and work with. If you remove the double unary from the above formula, it won't work.

I am hopeful this short tutorial has proved helpful on your road to mastering Excel array formulas. Next week, we are going to continue with Excel arrays by focusing on advanced formula examples. Please stay tuned and thank you for reading!

134 comments

  1. Thank you, this was very helpful and easy to follow and understand.

    I've face slight problem regarding the named constant array. When I write the name of the array in the formula, even before I finish, I can see the values in the array. However, when I press ctrl+shift+enter, the out is 0s. So could be plz help me with this.

    Thanks again.

    • Hi! Unfortunately, this information is not enough to give you any advice. For me to be able to help you better, please describe your task in more detail. Please specify what you were trying to find, what formula you used, and what problem or error occurred.

      • Hi Mr. Alexander, first thank you for the reply. Let me explain further. well, first, I named constant array under the formula-defined names. Name: FirstQuarter comment using this formula: ={"Janurary","February","March"}". so, when i want to retrive the values, when type the the array name FirstQuater, though i can see the values January, February, March before I even finish the name, yet when I press the ctrl+shift+enter to enter the values in my preselected cell range is 0 0 0.
        I hope I made it clear now.

  2. is it possible to have a formula or Excel Script to achieve following:
    (a) Sheet 1 is data entry sheet (a column of 12 months, several columns of local currencies;
    (b) Sheet 2 is exchange rate (a column of 12 months, same number of columns of exchang(e rates) ;
    (c) Sheet 3 is calculation (a column of 12 months, and same number of columns of calculated converted foreign currency)?

  3. Here's my problem: I used
    =IFS(B4="admin assistant",ARRAYFORMULA('Function Guide'!A2:A),B4="Executive Assistant",ARRAYFORMULA('Function Guide'!B2:B))

    It's giving me an error of IFS has mismatched range sizes. Expected row count: 1, column count: 1. Actual row count: 999, column count: 1

    I have multiple "...." with different array column to assign for it to show in another column, what is missing?

  4. I'm not sure if you've looked at Excels new dynamic array formulae but they have surpassed all this. This is "old" excel!

    • Hi! We have to keep in mind that not all people use the latest versions of Excel. Also, we have looked at all the new dynamic array functions. There are a very many articles about them on this blog.

  5. Hi!
    I'd like to ask if the formula can be put inside the curly brace likely below D4?
    =SUMPRODUCT(1*COUNTIFS(report_rfidata_detail!$A$1:$A$2000,{D4}))

    Thanks,

    • If cell D4 contains a formula, just use a reference to that cell. For example,

      =SUMPRODUCT(1*COUNTIFS(report_rfidata_detail!$A$1:$A$2000,D4))

  6. How to return strings? Misappropriating your example under ‘Array formula with the AND operator’, i changed cell F2 to {=MAXA(IF((A2:A9=F1), (B2:B9)))} (and deleted the two sales summary cells). I would expect this to return ‘Lemons’, but instead it yields ‘0’. It doesn't matter if i add a value_if_false, such as "A" or "M".

    • Hi! Explain your question. What result do you want to get? Is your formula trying to find the maximum value from the text strings?

  7. I googled this page looking for a complete list of all CSE array functions. Several sources for dynamic array functions but no complete listing of CSE functions to be found. Perhaps a useful reference could be added at this page?

  8. This article includes this comment:
    "Tip. In modern versions of Excel, there is no need to use an array formula for this kind of tasks - a simple SUMIFS formula handles them perfectly."

    True only for AND logic, not OR logic, which still requires the + symbol to OR binary arrays.

  9. Thanks for all you do for the community.

  10. Thank you madam..

  11. I have an array formula, with {} around the whole thing. If I edit the formula and press enter, the {} disappear, as you would expect.

    If I hold Control + Shift and Enter, the formula is displayed in the cell!

    This is my formula. It used to work because I have other cells with the same formula that work. Only trouble is, I can't edit them because that will break them!

    {=INDEX(OVERALL_AREA,SMALL(IF($E$1=ZONE_NUMBER,IF("Window"=ELEMENT_TYPE,ROW(ZONE_NUMBER)-MIN(ROW(ZONE_NUMBER))+1,""),""),ROW($A1)),12)}

    Thank you for any help in anticipation.

    • Ah, ok. I was typing in the {} and then pressing Control + Shift and Enter. I shouldn't have put the {} in myself!

  12. Hello,

    I have a column, in each cell consisting of many temperaments separated by commas. I need to find the mode based on the temperament. I don't want to convert text to columns.

    Do you know any way to make this?

    Thank you in advance!

    • Hi!
      Unfortunately, without seeing your data it is difficult to give you any advice. Please provide me with an example of the source data and the expected result.

  13. Thank you for a very well written tutorial!

  14. Many times whenever I could not find a solution of a problem, your web pages comes as saviour, Today also I learnt a good example from you index match array function. Thank you may god bless.

  15. Hi,
    Can you please make format on Auto calculation regarding Sick Leave(SL),Casual Leave(CL) and Half day SL & CL,Automatically from Attendance on month wise?

  16. Hi there, I have a complicated formula in place, I am using a defined array CustomerCode_=$D4$ as part of a wider SUMPRODUCT formula. However the cell $D4$ gives one option ie Customer A or Customer B or Customer C. I want to be able to have cell $D4$ reference Customer A AND Customer B as an aggregate. I defined a new array CustAGG_ for Customer A and Customer B CustAGG_ value is {Customer A; Customer B} and when I type CustomerCode_=$D4$ and $D$4=CustAGG_ it doesn't seem to work.

    If I do it manually ie (CustomerCode_=Customer A)+(CustomerCode_=Customer B) I get the right series of 1 and 0 for the full array. However I have more than 2 customers and several aggregations to do so I am wondering if there's an easier way?

  17. I don't know if Array is the way to go for this, but i have this data set the IDs are children of the Parent ID. Each row has a role type on it. What i need to do is determine for each Parent ID whether or not there was a TA or a Dev role. Any ideas on how to do this?

    ID Role Type Parent ID
    1001 BA 2001
    1002 TA 2001
    1003 Dev 2001
    1004 QA 2001
    1005 BA 2001
    1006 BA 2002
    1007 QA 2002
    1008 BA 2002
    1009 BA 2003
    1010 TA 2003
    1011 QA 2003
    1012 BA 2003
    1013 BA 2004
    1014 QA 2004
    1015 BA 2005
    1016 TA 2005
    1017 Dev 2005
    1018 TA 2005
    1019 QA 2005
    1020 BA 2005

    • Hello Amy,
      Supposing that your data are in columns A, B, and C, enter the following formula in cell D1 and then copy it down along the column:
      =IF(OR(B2 = "TA", B2 = "Dev"), "Yes", "No")

      Hope this is what you need.

  18. Svetlana!!
    Actually you are a awesome lady. Many many thanks to you.

  19. Can I assign string variables in Selection.Formula array?

    So, I am using an horizontal array, but have the values assigned to variables collected in VBA.

    I need to change the code below so "A12" is str_ID and "04/11/2019" is dtm_date and "Sarah" is str_Name

    Range("B3:D5").Select
    Selection.FormulaArray = _
    "={""A12"",""04/11/2019"",""Sarah""}"

  20. Hi Svetlana,
    I have a challenging requirement. I need to compute ageing of Invoices paid. There are 3 dates involved. Payment date[1] (-) Resolution date[2] is age of the line. If Resolution date is blank, then the the formula should consider Invoice date[3]. I can do it easily in the sheet by using if(res date="blank",Inv date,Res date) and then put a count in cell on the numbers between 0-30, 30-60 etc. But I cannot add a new column in the file as it is a protected file. Can I build a formula for this. Can you please help.

  21. hello,
    I need help regarding matching two databases and returning a non-exact value based on a reference value. the first database (sheet 1) is:
    Patient Number diagnosis
    123321 Hypertension
    112233 heart Failure
    995566 Diabetes

    the second database (sheet 2) is
    Patient Number diagnosis
    123321 Hypertension stage 1
    112233 intrinsic heart Failure
    995566 Diabetes mellitus

    so as you see, the patient number is the common value of both sheets, but the diagnosis is not exactly the same, is there a way to make excel bring the approximate value (like if 5 or more letters matching) from sheet two and add it as an extra column to sheet 1, as a new cell in the same raw of the same patinet number...

    Appreciating your help

  22. I have a paragraph in Cell A1 & A List of Text strings in Range E1:E100.
    I want to put matching text string from E1:E100 to "1st to nth cell in cloumn C

    Can you help.

  23. i have a range of values in the form of "from" and "to" and corresponding to that some quantities, call it array 1. I have another set of values in the same form of "from" and "to" but are the different from the first array, call it array 2. I need values corresponding to array 2 from array 1 by splitting the quantities corresponding to array 1 by dividing the quantities by difference of "from and "to" in array 1.

  24. Nice article. Keep up.

  25. I want to curve fit data with a quadratic polynomial, outside of trendline in plotting. Online sources suggest Linest(Y's,X's^{1,2},1,1) entered as an array formula while 3 cells are selected. I am using Office 2016. This results in the VALUE error all 3 cells. If the exponent instead points at an array variable, e.g. {1,2} entered as an array across two cells, Pointing at the first of the 2 array variable cells gives a valid slope and intercept in two cells, the N/A in the third. Pointing at the 2nd cell of the array formula, it looks like a quadratic fit but still 2 terms, the 3rd with the N/A. Ideas? Thank you.

  26. I need to copy down a constant column value (column 1) to an existing sum array?:

    Selection.Subtotal GroupBy:=1, Function:=xlSum, TotalList:=Array(9, 10, 11 _, 12, 15, 16), Replace:=True, PageBreaks:=False, SummaryBelowData:=True

  27. Hi All,
    I have a question, not too advanced in excel, but to certain degree. I have a following table:
    Column C - I have dates
    Column I - I have number of students in training
    I need to show in cell K1 the number of students who are in training this week. I came up with a long formula below which does the job, however is long and confusing for others. My question, is there a simpler way to show this by using TODAY and WEEKNUM via array formula or something more simpler than my current string below:

    =SUMIFS($I$31:$I$78,$C$31:$C$78,">="&(TODAY()-(WEEKDAY(TODAY(),2))+1),$C$31:$C$78,"<="&(TODAY()+(7-(WEEKDAY(TODAY(),2)))))

    Thanks!
    Orkhan

  28. I would like some help, can text from a drop down have a numeric value in a formula. Example 1-Year is the text and the value would be .85. So when I have a formula it would take the .85 x other values? Thank you

  29. Thank you so much, you are a very good teacher =)

  30. Timesheet Data Help
    Hi there! Is there a way to pull data from an excel timesheet that would show who works what shift? My Timesheet is based off of approx 30+ people working various shifts (D or N) on a given day. I would like to be able to see who is working a Day shift on a particular day and conversely a N shift on that same day. I would like to see this data tallied somehow near the end of the timesheet as i already have it set up to count how many people are working a Day shift or N shift but I would like to see the names of the individuals pop up somewhere near the bottom of my timesheet (as a column list not in row format). Is this possible?

    An example:

    Employee Name:
    a D D N N
    b D D N N
    c D D N
    d D D
    Day 1 2 2 2 1
    Night 1 2 2
    (i would like the name of 'a' to show up here - as a table or pop-up somehow?)
    same but for both 'a' and 'b'
    same but for 'b' and 'c'
    I would like the names of 'a' to show up here for nights somehow
    same but for 'a' and 'b'
    (the start of the above comments indicate the cell location it would have shown up on my excel worksheet but pretend the first three comments are on the same row and the last two are on the row below)
    I mean, i *could* do it manually, but that seems really tedious and I'm sure excel has some function to do this for me. I'm just not smart enough to put it together, Lol. I'm thinking vlookup is involved but i'm not sure how to set up my formula right.

    Any help is greatly appreciated!

    Thank you!

    (Ive already posted this to the microsoft help comm forum and theyve already helped me with a VBA script. I am just wondering if there is a formula that can do this same thingÉ)

  31. Example 1. A single-cell array formula
    how it is "20" ? , i got the answer 45

    • Hi Sarita,

      Maybe you have different source data? You can try subtracting the numbers in column B from column C with a simple formula like =C2-B2, and see if any difference equals 45.

  32. If i use or function in front istead of using + sybomls between them can they again give same result

  33. My Spreadsheet looks like this:

    Column Column Column Column Column Column
    A B C D E F
    2018 2017 2016 2015 2014 2013
    1.Link * * * * *
    2.JetPro W * * W
    3.G&G W W W W W
    4.MDBA
    5.Bill G. W W W W

    Column A; contains the names of the current year winners
    Columns B-F; shows there status from Previous years
    '*' denotes Honor roll status for that year
    'W' denotes they were on the winner list for that year
    'a blank cell' they did not make the list that year

    In order to receive 'honor roll(*)' it must be their sixth consecutive year on the winners list.

    I am trying to write a formula that will highlight 'Column A' to show their status for the current year.
    RED highlight for 'new honor roll'
    Blue highlight for 'repeat honor roll'
    Yellow Highlight for 'new winner'

    For Example, referring to the chart above:

    #1: Blue Highlight - b/c they have been on honor roll for >6 yrs. consecutively
    #2: No Highlight - b/c they lost there status in 2016, so only have 2 consecutive wins (2017&2018)
    #3: RED Highlight - b/c 2018 makes their 6th consecutive win; they move to Honor roll status 'new honor roll'
    #4: Yellow Highlight - b/c they were not on the previous years winners list
    #5:Yellow Highlight - b/c they were not on they previous years winners list

  34. Hi,

    Thank you for this information. I was finally able to solve my problem after going through your tutorial. I did not find here solution to exact problem i was having, but still, applying things taught here, I was able to do it.

    Problem: To count number of rows where values in one column (Say A1:A100) is greater than the corresponding values in other column (Say B1:B100).

    My Solution is as follows:

    {=SUM(IF((A1:A100)>(B1:B100), 1, 0))}

    Thanks a lot. Regards.

  35. I have an array formula in a VBA routine covering several rows.
    I need to copy the VALUE resulting from executing the array formula into another column on the same sheet. However, copy and paste or even paste special values does nothing.

    What's so special about getting the values only from an array formula under VBA?

  36. Hi, i just tried to edit the =SUM(LARGE(range, {1,2,3})) array formula to
    =LARGE(range,{1;2;3}). The idea was to get it to list the 3 largest numbers when i dragged the original cell down 2 cells.

    Unfortunately it only displays the biggest number meaning it was only reading the 1 and not the 2 or 3. So it didn't matter how many times i dragged the cell down it would only show me the biggest number.

    Can someone explain to me why? , from my understanding i assumed it would naturally follow the constants from 1 to 3 when dragged down, thus giving me the first largest to 3rd largest numbers.

  37. Hey Doug - Its actually the second screenshot in this post.
    Please check this section "Simple example of Excel array formula".

    But anyways, found a way using :

    =IF(IFERROR(FIND("30",INDIRECT(CONCAT(CHAR(64+MATCH("Sold",1:1)),ROW(E2))))>0,FALSE),INDEX(A:A,ROW(E2)),"")

    So basically , E2 will now have the value at A2,if column SOLD as value 30 in it, dragging the formula down and will repeat it. (need adjustment to 1:1 or use formulas -> name manager to create a named value).

    Thanks for your help !

  38. How I can find all products where sold=30 ?

    • SD:
      The function to use is the SUMIF function. Where the values to sum are in the range B27:B32 and the values to sum are equal to or greater than 30 the formula is:
      =SUMIF(B27:B32,">=30")
      If the values to sum are only the ones equal to 30 then you just have 30 and no double quotes. =SUMIF(B27:B32,30)
      Use the COUNTIF function in the same way to get the number of products sold. So the formula would look like: =COUNTIF(B27:B32,30)or =COUNTIF(B27:B32,">=30")

      • Thanks Doug, But that gives me 60, I want to see "Kiwi , Mango"

        • SD:
          Can you post a copy of the columns your data is in?
          It'll help if I can see what you're working with.

  39. Hi ,

    I have the data in below format:

    A -100
    B -234
    C -32

    A -123
    B -221
    D -456

    A -145
    B -245
    C -312
    D -478

    I want to format this data as:
    A B C D
    100 234 32
    123 221 456
    145 245 312 478

    Could you please help me how it can be done in excel?

    • Neeraj:
      In working briefly with your example data the only thing I can come up with is a procedure that involves Text-to Column then copy and transpose. If you have a lot of data like this, it will be a time consuming major pain to get the job done, but it can be done. Because your data is not in a consistent structure I can't figure out another way to do it without resorting to some code. Even then it would not be easy. Anyway, here's the way it can be done:
      Select each group of the data for example the first three numbers.
      Then under Data choose Text-to-Columns.
      Then, choose the Delimited button then next.
      Then, check the Other box and enter a hyphen in that field, then highlight the first column that contains the letters and choose the Do Not Import button, then Next.
      Now the numbers will be in separate columns. Select these three cells, copy them and then choose Paste Special and select the Transpose button.
      Click Paste and the numbers will be in three separate columns which you can put headers on A,B and C. Go Ahead and put a header on a fourth column as D.
      You'll have to go through this same procedure for each of these with the exception of the second group of data.
      With this group after you've got it in the separate cells, you'll need to just copy the top two numbers and transpose them into the proper cell and then copy the last number into the D column by itself.

  40. This is very helpful, but I'm struggling with extending it to my application.

    I need to see how many hours exist for each person in a month, and then use that person's employee number, look up his (or her) rate, and then multiple total hours by that person's rate -- and then I need to do this for each person who charged that month...to figure out the total cost for that month.

    Here is example data:

    Emp # Name Rate
    11111 John 175
    22222 Paul 150
    33333 George 125
    44444 Ringo 130

    May June July
    Proj 1
    John 10 10 10
    Paul 15 20 30
    Proj 2
    John 11 22 33
    George 33 40 40

    Proj 3
    Ringo 16 22 44
    George 44 44 44

    xxxx

    So, I'd look up John's rate and then multiple it by 22 hours and then George's rate and multiple it by 77, and do this for each row...and then sum up those products.

  41. Very nicely done tutorial. Easy to follow with good progression of complexity from example to example.

    Thank you.

  42. Hi, I have a spreadsheet for monitoring athletes training. In this I collect the type of training (running, cross-training, gym), how long they trained for (in minutes), and the intensity of exercise (training zones from 1-10). I want to calculate the total "training stress". Normally, this would simply be time multiplied by intensity. However, the training zones are non-liner; zone 4 is not twice as hard as zone 2, zone 10 is not 2.5 times as hard as zone 4. Also, each type of exercise has a different effect. Zone 10 running is harder on the body than zone 10 cycling. I know the exact multiplier for each zone of each sport, I just don't know how to create a formula that will check the exercise type, intensity type, and then multiply by the training stress factor.

    The training stress factors are as follows:
    Running: 0.17, 0.25, 0.33, 0.50, 0.67, 1.00, 1.33, 1.67, 2.08, 2.50
    Cross training: 0.08, 0.13, 0.17, 0.25, 0.33, 0.50, 0.67, 1.00, 1.33, 1.67
    Gym: 0.02, 0.04, 0.08, 0.13, 0.17, 0.25, 0.33, 0.50, 0.67, 1.00

    So, if I did 60 minutes of zone 4 running (stress factor 0.50), the training stress is 60mins * 0.50 = 30

    If I did 60 minutes of zone 4 cross-training [e.g. cycling] (stress factor 0.25) the training stress would be 60mins * 0.25 = 15.

    I hope that makes sense.

    In my spreadsheet I am inputting the following data: date, training type (run, cross-training, gym), training zone (1-10). I then want to have a final column that calculates the training stress by identifying the training type and training zone, and then multiplying the training time by the training stress factor to give the total training stress.

    Does this even make sense, and is it possible?

    Thanks

    • Hi Mark,

      Your task is quite interesting. I’d recommend you first to create a small table that will contain the stress factors for different types of training like the one below:
      Training stress factors
      Suppose this table is placed on Sheet 1, and your table where you are inputting the data is on Sheet 2:
      Main data table
      Then please enter the following formula into cell E2 in the table on Sheet 2:

      =INDEX(Sheet1!$A$1:$D$11, MATCH(C2,Sheet1!$A$1:$A$11,0), MATCH(B2,Sheet1!$A$1:$D$1,0))*D2

      You’ll get the total training stress for a particular activity type:
      Total training stress
      If you want to get the stress summary by date, then please use the standard Excel Subtotal feature (Data -> Subtotal).
      You can find more information about INDEX and MATCH in this article on our blog. To see how to use the Excel Subtotal feature, please go here.

      I hope this information will be helpful for you.

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)