Excel formula for Beginners – How to Average last 5 values in Excel

(Excel examples for Beginners)

In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average last 5 values in Excel.

 

Excel formula for Beginners – How to Average last 5 values in Excel

Generic formula

=AVERAGE(OFFSET(A1,COUNT(A:A),0,-N))

Explanation

To average the last 5 data points, you can use the AVERAGE function together with the COUNT and OFFSET functions. You can use this approach to average the last N data points: last 3 days, last 6 measurements, etc. In the example shown, the formula in F6 is:

=AVERAGE(OFFSET(C3,COUNT(C:C),0,-5))

Note: a negative value for height won’t work in Google sheets. See below for more information.

How this formula works

The OFFSET function can be used to construct dynamic rectangular ranges based on a starting reference and given rows, columns, height, and width.  The rows and columns arguments function like “offsets” from the starting reference. The height and width arguments (both optional), determine how many rows and columns the final range includes. For this example, OFFSET is configured like this:

  • reference = C3
  • rows = COUNT(A:A)
  • cols =  0
  • height = -5
  • width = (not provided)

The starting reference is provided as C3 the cell above the actual data. Since we want OFFSET to return a range originating from the last entry in column C, we use the COUNT function to count all values in column C to get the required row offset. COUNT counts only numeric values, so the heading in row 3 is automatically ignored.

With 8 numeric values in column C, the OFFSET formula resolves to:

OFFSET(C3,8,0,-5)

With these values, OFFSET starts at C3, offsets 8 rows to C11, then uses -5 to extend the rectangular range up “backwards” 5 rows to create the range C7:C11.

Finally, OFFSET returns the range C7:C11 to the AVERAGE function, which computes the average of values in that range.

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!

 

 

Excel formula for Beginners – How to Average last 5 values in columns in Excel

Learn to Code SQL Example – SQL | LIMIT Clause

R tutorials for Business Analyst – R Data Frame Sorting using Order()