MAX vs MAXA vs LARGE and MIN vs MINA vs SMALL Functions in Excel

Size: px
Start display at page:

Download "MAX vs MAXA vs LARGE and MIN vs MINA vs SMALL Functions in Excel"

Transcription

1 provides functions to calculate the largest or maximum value in a range and also functions to calculate the smallest or minimum value in a range. The first function we are going to look at is the MAX Function. This function returns the largest or maximum value, of a set of values. The syntax of the MAX Function is: If one is using references that contain logical values or text representations of numbers then it is best to use the MAXA Function. The MAXA Function also returns the largest value from a list of values provided, however, the MAXA Function can incorporate numbers, text representations of numbers and logical values. The syntax of the MAXA Function is: All rights reserved to Demy.com. 1

2 The LARGE Function returns the k-th largest value in a list of values. One can use this function to return the first largest value (the same value the MAX Function would return) or the second largest value in a data set or the third largest value in a data set and so on. The syntax of the LARGE Function is: All rights reserved to Demy.com. 2

3 The MIN Function returns the smallest or minimum value of a set of values. The syntax of the MIN Function is: All rights reserved to Demy.com. 3

4 If one is using references that contain logical values that have to be included in the actual calculation, then it is best to use the MINA Function. The MINA Function also returns the smallest value from a list of values provided, however, the MINA Function can incorporate numbers, text representations of numbers and logical values. The syntax of the MINA Function is: The SMALL Function returns the k-th smallest value in a list of values. One can use this function to return the smallest value (the same value the MIN Function would return) or the second smallest value in a data set or the third smallest value in a data set and so on. The syntax of the SMALL Function is: All rights reserved to Demy.com. 4

5 So, let s get started with a few simple examples to illustrate where to use the different functions. Table of Contents 1 The MAX Function 2 The MAXA Function 3 The LARGE Function 4 The MIN Function 5 The MINA Function 6 The SMALL Function 7 Using the Data Analysis tool in order to get the descriptive statistics of a dataset 8 Crossover Tip (Using These Functions in MS Word) 9 Download Files 10 Conclusion The MAX Function We have a list of numbers in cell range A4: A50, and we would like to see the values which one is the largest or the maximum value of the data set. So, for this simple evaluation, we can use the MAX Function. All rights reserved to Demy.com. 5

6 1) So, in cell C4, we enter the following formula: =MAX(A4: A50) All rights reserved to Demy.com. 6

7 2) Upon pressing CTRL-ENTER, we get a value of returned. All rights reserved to Demy.com. 7

8 3) We can check on this by sorting. 4) Select, one of the cells in the range and go to Data>Sort & Filter>Sort Largest to Smallest. All rights reserved to Demy.com. 8

9 5) The values are then sorted from largest to smallest as shown below. All rights reserved to Demy.com. 9

10 Read More: How to Use ROUND, ROUNDUP, ROUNDDOWN, MROUND & CEILING Functions The MAXA Function We have a mixed list of values (numbers and a logical value) in cell range A4: A8 and we would like to see the values, which one is the largest or the maximum value of the data set. So, for this evaluation, we can use the MAXA Function. All rights reserved to Demy.com. 10

11 1) So, in cell C4, we enter the following formula: =MAXA(A4: A8) All rights reserved to Demy.com. 11

12 2) Upon pressing CTRL-ENTER, we get a value of 1 returned, because the logical value of TRUE is read as 1, and thus 1 (the TRUE value) is evaluated to be the largest of this data set. All rights reserved to Demy.com. 12

13 The LARGE Function We have a list of numbers in cell range A4: A50, and we would like to see the values which one is the largest or the maximum value of the data set using the LARGE Function. We then want to see the second largest value in the data set and the fourth largest. This is the same dataset, we used in the MAX Function example. All rights reserved to Demy.com. 13

14 1) We want to first find the largest or maximum value using the LARGE Function so, in cell C4, we enter the following formula: =LARGE(A4: A50, 1) All rights reserved to Demy.com. 14

15 2) Upon pressing CTRL-ENTER, we get a value of returned. This is the same value returned by the MAX Function on the data set. All rights reserved to Demy.com. 15

16 3) We now want to find the second largest value in the dataset, using the LARGE Function so, in cell C5, we enter the following formula: =LARGE(A4: A50, 2) All rights reserved to Demy.com. 16

17 4) Upon pressing CTRL-ENTER, we get a value of returned, which is the second largest value in the dataset. All rights reserved to Demy.com. 17

18 5) We now want to find the fourth largest value in the dataset, using the LARGE Function so, in cell C6, we enter the following formula: =LARGE(A4: A50, 4) All rights reserved to Demy.com. 18

19 6) Upon pressing CTRL-ENTER, we get a value of 1002 returned, which is the fourth largest value in the dataset. All rights reserved to Demy.com. 19

20 The MIN Function We have a list of numbers in cell range A4: A50 and we would like to see the values, which one is the smallest or the minimum value of the data set. So, for this simple evaluation, we can use the MIN Function. All rights reserved to Demy.com. 20

21 1) So, in cell C4, we enter the following formula: =MIN(A4: A50) All rights reserved to Demy.com. 21

22 2) Upon pressing CTRL-ENTER, we get a value of 0.11 returned. All rights reserved to Demy.com. 22

23 The MINA Function We have a mixed list of values (numbers and a logical value) in cell range A4: A8 and we would like to see the values, which one is the smallest or the minimum value of the data set. So, for this evaluation, we can use the MINA Function. All rights reserved to Demy.com. 23

24 1) So, in cell C4, we enter the following formula: =MINA(A4: A8) All rights reserved to Demy.com. 24

25 2) Upon pressing CTRL-ENTER, we get a value of 0 returned, because the logical value of FALSE is read as 0, and thus 0 (the FALSE value) is evaluated to be the smallest of this data set. All rights reserved to Demy.com. 25

26 The SMALL Function We have a list of numbers in cell range A4: A50 and we would like to see the values, which one is the smallest or the minimum value of the data set using the SMALL Function. We then want to see the second smallest value in the data set and the third smallest. This is the same data set we used in the MIN Function example. All rights reserved to Demy.com. 26

27 1) We want to first find the smallest or minimum value using the SMALL Function so, in cell C4, we enter the following formula: =SMALL(A4: A50, 1) All rights reserved to Demy.com. 27

28 2) Upon pressing CTRL-ENTER, we get a value of 0.11 returned. This is the same value returned by the MIN Function on the data set. All rights reserved to Demy.com. 28

29 3) We now want to find the second smallest value in the dataset, using the SMALL Function so, in cell C5, we enter the following formula: =SMALL(A4: A50, 2) All rights reserved to Demy.com. 29

30 4) Upon pressing CTRL-ENTER, we get a value of 0.13 returned, which is the second smallest value in the dataset. All rights reserved to Demy.com. 30

31 5) We now want to find the third smallest value in the dataset, using the SMALL Function so, in cell C6, we enter the following formula: =SMALL(A4: A50, 3) All rights reserved to Demy.com. 31

32 6) Upon pressing CTRL-ENTER, we get a value of 0.15 returned, which is the third smallest value in the dataset. All rights reserved to Demy.com. 32

33 Using the Data Analysis tool in order to get the descriptive statistics of a dataset One can also get the minimum, maximum, average and other descriptive statistics of a data set using the Data Analysis Tool. You can also see the fourth largest value or second smallest value, for example, using this tool. We have a range of numbers, and we want to get the entire descriptive statistics for the range. So we can use the Data Analysis Tool in order to do this. All rights reserved to Demy.com. 33

34 1) First things, first load the Data Analysis Toolpak in. 2) Then go to Data>Analysis>Data Analysis. All rights reserved to Demy.com. 34

35 3) Select Descriptive Statistics and click Ok. All rights reserved to Demy.com. 35

36 4) Select A4: A50 as the input range, grouped by Columns. Select $E$4 as the output range on the same worksheet. Check summary statistics in order to get the maximum, minimum and other summary statistics delivered. For the Kth largest value put 4, in order to get the fourth largest value of the data set. For the Kth smallest put 2, in order to get the second smallest value of the data set. All rights reserved to Demy.com. 36

37 5) Click Ok. 6) The maximum value of and the minimum value of for the data set is returned. The fourth largest value of and the second smallest value of of the entire data set, is also delivered as part of the descriptive statistics. All rights reserved to Demy.com. 37

38 And there you have it. Crossover Tip (Using These Functions in MS Word) One can calculate the MAX or MIN of a set of numbers in a Word Table as well. In our Word Table below, we have two columns and we would like to work out the maximum value using the MAX Function in Word, for the first column, and the minimum value of the second column using the MIN Function in Word. All rights reserved to Demy.com. 38

39 1) In order to work out the maximum for the first column, in the blue shaded cell, go to Table Tools>Layout>Data>Formula. All rights reserved to Demy.com. 39

40 2) Enter =MAX(ABOVE) and choose a Number Format as shown below. All rights reserved to Demy.com. 40

41 3) A maximum value for the first column is returned, which is 200 in this case. All rights reserved to Demy.com. 41

42 4) In order to work out the minimum for the second column, in the orange shaded cell, go to Table Tools>Layout>Data>Formula. 5) Enter =MIN(ABOVE) and choose a Number Format as shown below. All rights reserved to Demy.com. 42

43 6) A minimum value for the second column is returned, which is 20 in this case. All rights reserved to Demy.com. 43

44 Download Files Max-Maxa-Large-Min-Mina-Small Word-Example Conclusion provides a few efficient ways of calculating the minimum or maximum of a data set. The standard functions are the MIN and MAX Function. However, there is also the MINA, MAXA, LARGE and SMALL Functions which extend the functionality of the standard functions. Word also provides a way to calculate the minimum and maximum value in a Table and one can use the Table referencing nomenclature in word to refer to cells or use the ABOVE, BELOW, LEFT nomenclature in one s word table formulas. Please feel free to comment and tell us if which of the summary statistical functions you use in your spreadsheets or Word tables. 3 All rights reserved to Demy.com. 44

45 SHARES FacebookTwitter Taryn N Taryn is a Microsoft Certified Professional, who has used Office Applications such as and Access extensively, in her interdisciplinary academic career and work experience. She has a background in biochemistry, Geographical Information Systems (GIS) and biofuels. She enjoys showcasing the functionality of in various disciplines. In her spare time when she s not exploring or Access, she is into graphic design, amateur photography and caring for her two pets, Pretzel and Snoopy. All rights reserved to Demy.com. 45

How to Create a For Next Loop in Excel VBA!

How to Create a For Next Loop in Excel VBA! Often when writing VBA code, one may need to repeat the same action or series of actions more than a couple of times. One could, in this case, write each action over and over in one s code or alternatively

More information

How to Use Do While Loop in Excel VBA

How to Use Do While Loop in Excel VBA We have already covered an introduction to looping and the simplest type of loops, namely the For Next Loop and the For Each Next Loop, in previous tutorials. We discovered that the For Next Loop and the

More information

So let s get started with a simple example to illustrate the difference between the worksheet level protection and workbook level protection.

So let s get started with a simple example to illustrate the difference between the worksheet level protection and workbook level protection. It is often necessary to protect either the sensitive information in one s actual worksheet or the workbook structure, from being edited. Excel provides different options for protecting and securing one

More information

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH]

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH] You can utilize the built-in Excel Worksheet functions such as the VLOOKUP Function, the CHOOSE Function and the PMT Function in your VBA code and applications as well. In fact, most of the Excel worksheet

More information

Changing Case using Worksheet Functions and Excel VBA

Changing Case using Worksheet Functions and Excel VBA Excel provides the text worksheet functions, namely the Upper Function, the Lower Function and the Proper Function, which can change the case of a specified input text string. This text string could be

More information

Read More: How to Make Excel Graphs Look Professional & Cool [10 Awesome Tips]!

Read More: How to Make Excel Graphs Look Professional & Cool [10 Awesome Tips]! How to Modify Color, Font, & Effects & Create Custom Excel Excel has themes, which have different default colors, auto shape effects, SmartArt effects, and fonts. When utilizing themes one can quickly

More information

Do Until Loop in Excel VBA with Examples

Do Until Loop in Excel VBA with Examples The Do Until Loop Structure is utilized, when one has a set of statements or actions to be repeated and repetition occurs until the condition evaluates to true, in other words, while the condition is false

More information

Read More: How to Make a Pie Chart in Excel [Video Tutorial]

Read More: How to Make a Pie Chart in Excel [Video Tutorial] Most of us are familiar with standard Excel chart types such as a pie chart, a column chart, and a line chart, as well as the types of data they are used to showcase visually. Excel, however, offers a

More information

How to Use the Select Case Structure in Excel VBA

How to Use the Select Case Structure in Excel VBA One can implement conditional logic in VBA using an IF statement, multiple IF-Elseif statements or one can use the Select Case statement in order to implement conditional logic. In the case where one has

More information

Exchange (Copy, Import, Export) Data Between Excel and Access

Exchange (Copy, Import, Export) Data Between Excel and Access Excel usage is widespread and Excel is often the go-to Office application for data entry, analysis, and manipulation. Microsoft Access provides relational database capability in a compact desktop environment.

More information

Read More: How to Create Combination Charts with a Secondary Axis in Excel

Read More: How to Create Combination Charts with a Secondary Axis in Excel A pie chart is used to showcase parts of a whole or proportions of a whole. Charts are visual representations of data that can summarize large data sets and are useful for engaging one s audience. As always,

More information

Computer & Careers Mr. Lewis

Computer & Careers Mr. Lewis Microsoft Excel Unit A Computer & Careers Mr. Lewis Definitions: Spreadsheet Worksheet Workbook Formulas File Extension When you open a spreadsheet the default name is Is an application you use to perform

More information

Lesson 06. Excel Functions

Lesson 06. Excel Functions Lesson 06 Excel Functions Basic functions: SUM: Adds a range of cells together AVERAGE: Calculates the average of a range of cells COUNT: Counts the number of chosen data in a range of cells MAX: Identifies

More information

เพ มภาพตามเน อหาของแต ละบท. Microsoft Excel Benjamas Panyangam and Dr. Dussadee Praserttitipong. Adapted in English by Prakarn Unachak

เพ มภาพตามเน อหาของแต ละบท. Microsoft Excel Benjamas Panyangam and Dr. Dussadee Praserttitipong. Adapted in English by Prakarn Unachak เพ มภาพตามเน อหาของแต ละบท Microsoft Excel 2016 Benjamas Panyangam and Dr. Dussadee Praserttitipong Adapted in English by Prakarn Unachak 204100 IT AND MODERN LIFE 1. Excel Basics 2. Calculation and Formula

More information

Customizing the Ribbon

Customizing the Ribbon Beginning Excel Tech Workshop Fall 2016 Customizing the Ribbon Excel comes with many built in functions and tabs. If you want to customize what appears on your ribbon, you can do so by going to File -->

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

Unit 3 Fill Series, Functions, Sorting

Unit 3 Fill Series, Functions, Sorting Unit 3 Fill Series, Functions, Sorting Fill enter repetitive values or formulas in an indicated direction Using the Fill command is much faster than using copy and paste you can do entire operation in

More information

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Function built-in formula that performs simple or complex calculations automatically names a function instead of using operators (+, -, *,

More information

Excel VLOOKUP. An EMIS Coordinator s Friend

Excel VLOOKUP. An EMIS Coordinator s Friend Excel VLOOKUP An EMIS Coordinator s Friend Vlookup, a function in excel, stands for Vertical Lookup. This function allows you to search a specific table of data, look for a match within the table of data

More information

Excel Module 7: Managing Data Using Tables

Excel Module 7: Managing Data Using Tables True / False 1. You should not have any blank columns or rows in your table. True LEARNING OBJECTIVES: ENHE.REDI.16.131 - Plan the data organization for a table 2. Field names should be similar to cell

More information

MS Office for Engineers

MS Office for Engineers MS Office for Engineers Lesson 4 Excel 2 Pre-reqs/Technical Skills Basic knowledge of Excel Completion of Excel 1 tutorial Basic computer use Expectations Read lesson material Implement steps in software

More information

Data Management Project Using Software to Carry Out Data Analysis Tasks

Data Management Project Using Software to Carry Out Data Analysis Tasks Data Management Project Using Software to Carry Out Data Analysis Tasks This activity involves two parts: Part A deals with finding values for: Mean, Median, Mode, Range, Standard Deviation, Max and Min

More information

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning Review Ch. 15 Spreadsheet and Worksheet Basics 2010, 2006 South-Western, Cengage Learning Excel Worksheet Slide 2 Move Around a Worksheet Use the mouse and scroll bars Use and (or TAB) Use PAGE UP and

More information

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley Excel 2010 Functions 4/18/2011 Archdiocese of Chicago Mike Riley i VIDEO TUTORIALS AVAILABLE Almost 100,000 video tutorials are available from VTC. The available tutorials include Windows 7, GroupWise

More information

AAT Advanced Diploma Spreadsheets for Accounting

AAT Advanced Diploma Spreadsheets for Accounting AAT Advanced Diploma Spreadsheets for Accounting As part of its review of the AAT L3 Advanced Diploma, AAT have amended the skills list for the Spreadsheets for Accounting unit. Spreadsheet Skills that

More information

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example This exercise is a follow-up to the MPA admissions example used in the Excel Workshop. This document contains detailed solutions

More information

The insert tab is consist tables, illustrations, charts, Links and Text groups. Also in the Group at the end of the lower-right corner of the dialog

The insert tab is consist tables, illustrations, charts, Links and Text groups. Also in the Group at the end of the lower-right corner of the dialog Topic : İnsert The insert tab is consist tables, illustrations, charts, Links and Text groups. Also in the Group at the end of the lower-right corner of the dialog icon or the item's name is clicked there

More information

Very Short Answer Type Questions

Very Short Answer Type Questions Very Short Answer Type Questions Question 1: Define the term workbook. A workbook is a collection of worksheets. By default, there are three worksheets in every workbook. Question 2: Reena is new to Excel.

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Basic Excel Forumlas

Basic Excel Forumlas Basic Excel Forumlas Mathematical operators Excel uses standard operators for formulas, such as a plus sign for addition (+), a minus sign for subtraction (-), an asterisk for multiplication (*), a forward

More information

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012 Introductory Excel 2010 Walpole Public Schools Professional Development Day March 6, 2012 By: Jessica Midwood Agenda: What is Excel? How is Excel 2010 different from Excel 2007? Basic functions of Excel

More information

10 noviembre Spreadsheets. Unit 3 (Part 3)

10 noviembre Spreadsheets. Unit 3 (Part 3) 10 noviembre 2011 Spreadsheets Unit 3 (Part 3) 1 2 Building Basic Formulas From the simple addition formula to the most complex ANOVA statistical variation, all formulas in Excel have one thing in common:

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

Excel 2016 Functions

Excel 2016 Functions Flash Fill New in Office 2013 is a feature called Flash fill. Flash fill will help you fill in empty cells within a spreadsheet based on patterns that already exist. You may need to provide a couple of

More information

Pivot Table Project. Objectives. By the end of this lesson, you will be able to:

Pivot Table Project. Objectives. By the end of this lesson, you will be able to: Pivot Table Project Objectives By the end of this lesson, you will be able to: Set up a Worksheet Enter Labels and Values Use Sum and IF functions Format and align cells Change column width Use AutoFill

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Excel Formulas & Functions I CS101

Excel Formulas & Functions I CS101 Excel Formulas & Functions I CS101 Topics Covered Use statistical functions Use cell references Use AutoFill Write formulas Use the RANK.EQ function Calculation in Excel Click the cell where you want to

More information

Excel Lesson 3 USING FORMULAS & FUNCTIONS

Excel Lesson 3 USING FORMULAS & FUNCTIONS Excel Lesson 3 USING FORMULAS & FUNCTIONS 1 OBJECTIVES Enter formulas in a worksheet Understand cell references Copy formulas Use functions Review and edit formulas 2 INTRODUCTION The value of a spreadsheet

More information

Excel Quiz (Answers are shown in Page 7)

Excel Quiz (Answers are shown in Page 7) Excel Quiz (Answers are shown in Page 7) Shortcut Keys 1. Which key do you press to check spelling? A. F3 B. F5 C. F7 D. F9 2. What is the keyboard shortcut for creating a chart from the selected cell

More information

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems Advanced Excel Presented By: Chad Jarvi, CPA President, Civic Systems IMFOA Conference April 11, 2019 3:15 pm 4:15 pm COPY AND PASTE... 4 USING THE RIBBON... 4 USING RIGHT CLICK... 4 USING CTRL-C AND CTRL-V...

More information

Excel 2. Module 2 Formulas & Functions

Excel 2. Module 2 Formulas & Functions Excel 2 Module 2 Formulas & Functions Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson

More information

Excel 2016 Functions

Excel 2016 Functions Excel 2016 Functions A function is a preset formula in Excel that is intended to carry out a specific calculations, logical tests, formats, etc. in the cell in which it is located. All functions begin

More information

EXCEL walkthrough. It is from May 2012, Paper 3 Practical Test 0417/32. It is available on the OLIE under the past papers section.

EXCEL walkthrough. It is from May 2012, Paper 3 Practical Test 0417/32. It is available on the OLIE under the past papers section. EXCEL walkthrough This is a walkthrough for a fairly straightforward past paper. However, if you have done one then the rest are pretty straight forward. It is from May 2012, Paper 3 Practical Test 0417/32

More information

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Preview from Notesale.co.uk Page 2 of 61

Preview from Notesale.co.uk Page 2 of 61 Modify a table Applying styles to tables; banding rows and columns; inserting total rows; removing styles from tables Filter and sort a table Filtering records; sorting data on multiple columns; changing

More information

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information

Chapter 2: Solving Problems with Statistical Analysis Tools

Chapter 2: Solving Problems with Statistical Analysis Tools Chapter 2: Solving Problems with Statistical Analysis Tools TRUE/FALSE 1. Microsoft Excel provides a variety of predefined functions, including statistical functions, that you can use to determine such

More information

SBCUSD IT Training Program. MS Excel ll. Fill Downs, Sorting, Functions, and More

SBCUSD IT Training Program. MS Excel ll. Fill Downs, Sorting, Functions, and More SBCUSD IT Training Program MS Excel ll Fill Downs, Sorting, Functions, and More Revised 4/16/2019 TABLE OF CONTENTS Number Formats...4 Auto Fill and Flash Fill...5 Simple Repeat...5 Fill Down Common Series...5

More information

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS...

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... EXCEL 2010 BASICS Microsoft Excel I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... 6 The Mouse... 6 What Are Worksheets?... 6 What is a Workbook?...

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

Creating and Using an Excel Table

Creating and Using an Excel Table Creating and Using an Excel Table Overview of Excel 2007 tables In earlier Excel versions, the organization of data in tables was referred to as an Excel database or list. An Excel table is not to be confused

More information

Amateurism Certification

Amateurism Certification Amateurism Certification NCAA Amateurism Certification 2 Requesting Final Amateurism Certification Navigate to your "My Planner" page by logging onto your account at www.eligibilitycenter.org. Then select

More information

Excel Introduction to Excel Databases & Data Tables

Excel Introduction to Excel Databases & Data Tables Creating an Excel Database Key field: Each record should have some field(s) that helps to uniquely identify them, put these fields at the start of your database. In an Excel database each column is a field

More information

Group Administrator. ebills csv file formatting by class level. User Guide

Group Administrator. ebills csv file formatting by class level. User Guide Group Administrator ebills csv file formatting by class level User Guide Version 1.0 February 10, 2015 Table of Content Excel automated template... 3 Enable Macro setting in Microsoft Excel... 3 Extracting

More information

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name.

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name. Excel 2010 Sorting Data Introduction Page 1 With over 17 billion cells in a single worksheet, Excel 2010 gives you the ability to work with an enormous amount of data. Arranging your data alphabetically,

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

File Name: Pivot Table Labs.xlsx

File Name: Pivot Table Labs.xlsx File Name: Pivot Table Labs.xlsx Lab Session 1: Create Simple Pivot Table with a Date Grouping Note: Instructions for the first lab are very detailed because it might be the first time you have created

More information

Navigation, Formatting, Sorting, Finding and Filtering

Navigation, Formatting, Sorting, Finding and Filtering DLA Excel Terms and Tips: Navigation, Formatting, Sorting, Finding and Filtering Topics: Basic Spreadsheet and Calculation Terms Unmerging Merged Cells Using Keystrokes to Quickly Scroll within a Worksheet

More information

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page Lesson 4: Auditing and Additional Formulas Return to the FastCourse Excel 2007 Level 3 book page Lesson Objectives After studying this lesson, you will be able to: Use 3-D cell references in formulas to

More information

Microsoft Excel Functions & Shortcuts for Beginners

Microsoft Excel Functions & Shortcuts for Beginners Microsoft Excel Functions & Shortcuts for Beginners KISS ~ Keep It Simple Stupid! Parts of a Formula 1.Functions 2.References 3.Constants 4.Operators Formula Example ~ Single Argument =SUM(A1:A10) is

More information

For a walkthrough on how to install this ToolPak, please follow the link below.

For a walkthrough on how to install this ToolPak, please follow the link below. Using histograms to display turntable data On the explore page there is an option to produce a histogram using the data your students gather as they work their way through each of the different sources

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced Microsoft Excel 2010 Advanced 0 Working with Rows, Columns, Formulas and Charts Formulas A formula is an equation that performs a calculation. Like a calculator, Excel can execute formulas that add, subtract,

More information

Lesson 2 Fractions on a Number Line

Lesson 2 Fractions on a Number Line Lesson Fractions on a Number Line Think A paper tape is marked so that there are equal parts between each meter. The tape is used to measure the length of two ribbons. 0 m m A B C D E F 0 (c) (d) (e) What

More information

QCTools. an Excel 97 AddIn. William F Lyle Copyright 1999

QCTools. an Excel 97 AddIn. William F Lyle Copyright 1999 QCTools an Excel 97 AddIn William F Lyle Copyright 1999 Installing QCTools as Excel 97 Add-in 1) Copy the QCTools.xla file into the Program Files\MSOffice\ Office\Library folder 2) Open an Excel spreadsheet

More information

USING the IEDATA add-in FROM THE SPREADSHEET MENU

USING the IEDATA add-in FROM THE SPREADSHEET MENU The IEDATA add-in The IEDATA add-in is designed to allow access to the data stored in the Informa Economics database from within a Microsoft Excel spreadsheet. With this add-in, you have access to thousands

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

Excel Conditional Formatting (Mac)

Excel Conditional Formatting (Mac) [Type here] Excel Conditional Formatting (Mac) Using colour to make data analysis easier Excel conditional formatting automatically formats cells in your worksheet if specified criteria are met, giving

More information

FAQ: Advanced Functions

FAQ: Advanced Functions Question 1: What are formulas and functions? Answer 1: Formulas are a type of data that can be entered into a cell in Excel. Formulas begin with an equal sign and use mathematical operators to calculate

More information

Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure.

Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure. MATHS AND STATISTICAL FUNCTIONS Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure. For example, the SUM function

More information

Data Service Center December

Data Service Center December www.dataservice.org Data Service Center December 2005 504-7222 Property of the Data Service Center, Wilmington, DE For Use Within the Colonial & Red Clay Consolidated Public School Districts Only Table

More information

Using Application and WorksheetFunction objects

Using Application and WorksheetFunction objects INTRODUCTION Using Application and WorksheetFunction objects Excel provides a large number of built-in functions that can be used to perform specific calculations or to return information about your spreadsheet

More information

Microsoft Excel 2013 Level 1

Microsoft Excel 2013 Level 1 Microsoft Excel 2013 Level 1 2 P a g e Word Level 1 January 2018 University of Regina Table of Contents Chapter 1 Getting Started... 7 Main Interface... 7 1. Quick Access Toolbar... 7 2. Ribbon Tabs...

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

2013 INTERMEDIATE MANUAL

2013 INTERMEDIATE MANUAL C B C H O U S E 2 4 C A N N I N G S T R E E T E D I N B U R G H E H 3 8 E G 0 1 3 1 2 7 2 2 7 9 0 W W W. I T R A I N S C O T L A N D. C O. U K I N F O @ I T R A I N S C O T L A N D. C O. U K CONTENTS CHAPTER

More information

Survey Design, Distribution & Analysis Software. professional quest. Whitepaper Extracting Data into Microsoft Excel

Survey Design, Distribution & Analysis Software. professional quest. Whitepaper Extracting Data into Microsoft Excel Survey Design, Distribution & Analysis Software professional quest Whitepaper Extracting Data into Microsoft Excel WHITEPAPER Extracting Scoring Data into Microsoft Excel INTRODUCTION... 1 KEY FEATURES

More information

Arkansas Curriculum Framework for Computer Applications II

Arkansas Curriculum Framework for Computer Applications II A Correlation of DDC Learning Microsoft Office 2010 Advanced Skills 2011 To the Arkansas Curriculum Framework for Table of Contents Unit 1: Spreadsheet Formatting and Changing the Appearance of a Worksheet

More information

MICROSOFT OFFICE APPLICATIONS

MICROSOFT OFFICE APPLICATIONS MICROSOFT OFFICE APPLICATIONS EXCEL 2016 : LOOKUP, VLOOKUP and HLOOKUP Instructor: Terry Nolan terry.nolan@outlook.com Friday, April 6, 2018 1 LOOKUP FUNCTIONS WHAT ARE LOOKUP FUNCTIONS USUALLY USED FOR?

More information

IF & VLOOKUP Function

IF & VLOOKUP Function IF & VLOOKUP Function If Function An If function is used to make logical comparisons between values, returning a value of either True or False. The if function will carry out a specific operation, based

More information

Watch the video below to learn more about creating formulas in Excel. *Video removed from printing pages. Mathematical operators

Watch the video below to learn more about creating formulas in Excel. *Video removed from printing pages. Mathematical operators Excel 2016 Intro to Formulas Introduction One of the most powerful features in Excel is the ability to calculate numerical information using formulas. Just like a calculator, Excel can add, subtract, multiply,

More information

SPREADSHEETS. (Data for this tutorial at

SPREADSHEETS. (Data for this tutorial at SPREADSHEETS (Data for this tutorial at www.peteraldhous.com/data) Spreadsheets are great tools for sorting, filtering and running calculations on tables of data. Journalists who know the basics can interview

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center September 9, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the

More information

Microsoft Office Word 2013 Intermediate. Course 01 Working with Tables and Charts

Microsoft Office Word 2013 Intermediate. Course 01 Working with Tables and Charts Microsoft Office Word 2013 Intermediate Course 01 Working with Tables and Charts Slide 1 Course 01: Working with Tables and Charts Sort Table Data Control Cell Layout Perform Calculations in a Table Create

More information

Terminology of Frequency Distribution Table.

Terminology of Frequency Distribution Table. Frequency Distribution Table in Excel There are many different ways to make a frequency distribution table in Excel. I have listed several. a. Data Analysis ToolPak (Automatic/Input data in a Dialog Box

More information

Excel Formulas Cheat Sheet

Excel Formulas Cheat Sheet Basic Formulas AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range MAX =MAX(A2:A10) Finds the largest

More information

Chapter 2 Random Number Generator

Chapter 2 Random Number Generator Chapter 2 Random Number Generator Suppose that you wanted to take a random sample of 5 of your company s 32 salespeople using Excel so that you could interview these five salespeople about their job satisfaction

More information

Troubleshooting in Microsoft Excel 2002

Troubleshooting in Microsoft Excel 2002 Page 1 of 8 Troubleshooting in Microsoft Excel 2002 Result: To understand how to work with the Excel software to enter data, navigate the page, and print materials. Tabs Look at the tabs at the bottom

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

LAB: Public-Key Encryption

LAB: Public-Key Encryption INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: Public-Key Encryption Since this lab is experiential, you must complete it during the lab period. Save this exercise in your flash drive at the end of the

More information

Chapter 2 Random Number Generator

Chapter 2 Random Number Generator Chapter 2 Random Number Generator Suppose that you wanted to take a random sample of 5 of your company s 32 salespeople using Excel so that you could interview these 5 salespeople about their job satisfaction

More information

Row 1 is called the header row which contains all the field names. Records start in row 2.

Row 1 is called the header row which contains all the field names. Records start in row 2. Excel: Lists Familiarity with basic Excel is required for this class. Learn to create field names, sort lists, and link worksheets. You'll learn lists that can also be used in our Word: Mail Merge class.

More information

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

More information

Mathematics LBS 4. Spreadsheet Mathematics: Statistics and Graphing. Finding the Mean, Median, & Mode

Mathematics LBS 4. Spreadsheet Mathematics: Statistics and Graphing. Finding the Mean, Median, & Mode Mathematics LBS 4 Spreadsheet Mathematics: Statistics and Graphing Lab 2: Finding the Mean, Median, & Mode Microsoft Excel Logo and all screens captured by permission of Microsoft Goal To use Excel to

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information