Calculating average of every nth value [Formula tips]

Share

Facebook
Twitter
LinkedIn

Lets say you have a large list of numbers, and you want to calculate the average of every nth value. Not the average of all numbers, but just every nth number.

That is what we will learn in next few minutes.

Few assumptions

Before we jump in to any formulas, first lets assume that all your data is in a table, conveniently named as tbl. Lets say this table has below structure.

Average of every nth value - calculating using Excel formulas.

Also, the value of n is a named cell N.

Average of every nth value

Approach 1: Using helper columns

Average of every nth value - calculated using Helper columnIf you have no allergies towards nuts, dairy or helper columns, then this approach is easiest.

We just add an extra column to our tbl , called as helper.

In the helper column, write this formula.

=MOD([@ID], N)=0

This will fill the helper column with TRUE & FALSE values, TRUE for all nth values, FALSE for everything else. See aside.

Once we have the helper column, calculating average of every nth value is easy as eating every slice of a cake.

We use AVERAGEIF to do this.

=AVERAGEIF(tbl[Value],tbl[Helper],TRUE)

Approach 2: Not using helper columns

Now things get interesting. Lets say you want to calculate average, but not use any helper columns.

First the formula:

=AVERAGE(IF(MOD(tbl[ID], N)=0,tbl[Value]))

Array entered.

Lets understand how it works:

We want the average of every nth item of tbl[Value] column.

In other words, we want average of every item of tbl[Value] column, whose corresponding tbl[ID] value is perfectly divisible by n.

How do we know when a value is perfectly divisible by another?

Don’t worry. You don’t have to do the long division on paper now. Instead we use Excel’s MOD function.

When a value is perfectly divisible by another, the reminder is zero.

So, MOD(value1, value2) = 0 means, value2 divides value1 perfectly.

That means…

We want the average of tbl[Value] when MOD(tbl[ID], N) = 0

Lets write that in Excel formula lingo.

=AVERAGE( IF(MOD(tbl[ID], N) = 0, tbl[Value]) )

This formula results in a bunch of values and FALSEs. Assuming N=3, this is what we get (for sample data):

=AVERAGE({FALSE;FALSE;15;FALSE;FALSE;18;FALSE;FALSE;18;FALSE;FALSE;15;FALSE;FALSE;14; …})

Since AVERAGE formula ignores any logical values, it will calculate the average of {15, 18, 18, 15, 14 … } and returns the answer you are expecting.

As this formula is processing arrays instead of single values, you need to array enter it (CTRL+SHIFT+Enter after typing the formula).

Bonus scenario: Average of FEBRUARY values only!

Here is a bonus scenario. Lets say you want to calculate the average sales of FEB alone… Then you can use AVERAGEIF (or AVERAGEIFS, if you want to have multiple conditions).

=AVERAGEIF(tbl[value], tbl[month], “FEB”)

Averageif() formula example - average of February values alone

Download example workbook:

Click here to download the example workbook. It contains all the techniques explained in this post. Play with the data & formulas to understand better.

Time for some challenges…

If you think averaging every nth value is not mean enough, try below challenges. Post your answers using comments.

  1. Write a formula to calculate average of every nth value, starting at row number ‘t’.
  2. Write a formula to calculate average of every nth value, assuming your table has only value column (no ID column).

Go ahead. Show off your formula skills. Post your answers in comments section.

Improving your Excel batting average

Calculating averages predates slice bread. Folklore says that when first neanderthal figured out how to express numbers and carved 2 of them on a cave wall, his manager walked by and asked “What is the average of these two? Eh?” and thumped her chest.

Although caves & wall carvings are replaced by cubicles & spreadsheets, we are still calculating averages, almost 2.9 million of them per hour.

So it pays to learn a few tricks about Excel Average formulas. Check out below to improve your average:

If your boss is the kind who thumps her chest and mocks you for your poor Excel skills, don’t cave in. Fight back. Enroll in Excel School and show that you can evolve.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

12 Responses to “Analyzing Search Keywords using Excel : Array Formulas in Real Life”

  1. Very interesting Chandoo, as always. Personally I find endless uses for formulae such as {=sum(if(B$2:B$5=$A2,$C$2$C$5))}, just the flexibility in absolute and relative relative referencing and multiple conditions gives it the edge over dsum and others methods.

    I've added to my blog a piece on SQL in VBA that I think might be of interest to you http://aviatormonkey.wordpress.com/2009/02/10/lesson-one-sql-in-vba/ . It's a bit techie, but I think you might like it.

    Keep up the good work, aviatormonkey

  2. Andy Pope says:

    Hi Chandoo,

    You might find this coded solution I posted on a forum interesting.

    http://www.excelforum.com/excel-programming/680810-create-tag-cloud-in-vba-possible.html

  3. [...] under certain circumstances.  One of the tips involved arranging search keywords in excel using Array Forumlas.  Basically, if you need to know how frequent a word or group of keywords appear, you can use this [...]

  4. Chandoo says:

    @Aviatormonkey: Thanks for sharing the url. I found it a bit technical.. but very interesting.

    @Andy: Looks like Jarad, the person who emailed me this problem has posted the same in excelforum too. Very good solution btw...

  5. bob says:

    Realy great article

    "You can take this basic model and extend it to include parameters like number of searches each key phrase has, how long the users stay on the site etc. to enhance the way tag cloud is generated and colored."

    How would you go about doing this? I think it would need some VB

  6. Thiago says:

    Hi,
    I found the usage very interesting, but is giving me hard time because the LENs formula that use ranges are not considering the full range, in other words, the LEN formula is only bringing results from the respective "line" cell.

    Using the example, when I place the formula to calculate the frequency for "windows" brings me only 1 result, not 11 as displayed in the example. It seems that the LEN formula using ranges is considering the respective line within the range, not the full range.

    Any hint?

  7. Hui... says:

    @Thiago
    You have to enter the formula as an Array Formula
    Enter the Formula and press Ctrl+Shift+Enter
    Not just Enter

  8. Gary says:

    is there a limit to the number of lines it can analyse.
    Ie i am trying to get this to work on a list of sentances 1500 long. 

    • Hui... says:

      @Gary
      In Excel 2010/2013 Excel is only limited by available memory,
      So just give it a go
      As always try on a copy of the file first if you have any doubts

  9. Sumit says:

    Apologies if I am missing something, but coudn't getting frequency be easier with Countif formula. Something like this - COUNTIF(Range with text,"*"&_cell with keyword_&"*")

  10. Ray says:

    Apologies if I missed, but what is the Array Formula to:

    1. Analyze a list of URL's or a list of word phrases to understand frequency;
    2. List in a nearby column from most used words to least used words;
    3. Next to the list of words the count of occurrences.

Leave a Reply