How to Generate Random Numbers in Excel (Ultimate Guide)

Size: px
Start display at page:

Download "How to Generate Random Numbers in Excel (Ultimate Guide)"

Transcription

1 Random numbers are those numbers which are generated by a process in which the outcome is not predictable and in a defined interval/set, the values are uniformly distributed. Random numbers are used in statistical sampling, computer simulations, data encryption, lottery and in the areas where unpredictable results are desired. In this article, we will see many processes on how to generate random numbers in excel. We will also see the procedures of generating letters, words, date and time also. Table of Contents 1 Basic use of RAND function in Excel 2 Uses of RAND function with a range 2.1 Specifying the upper limit 2.2 Generating random numbers between two numbers 2.3 Generating Excel random integer with RAND function 3 Use of RANDBETWEEN function 3.1 Generating random integer with RANDBETWEEN function in Excel 3.2 Generating random numbers with decimal places 4 Random letter generator in Excel 5 Generate random names in excel from a list 6 Random dates generator in Excel 7 Random time generator in Excel 8 Generating Random Dates & Times together 9 Unique random number generator in Excel (with no duplicates/repeats) 9.1 Sorting a list of unique numbers in random order 9.2 Ranking random integers 9.3 Using the largest values and the MATCH function 9.4 Using the RAND and INDEX function 10 Excel VBA random number generator with no duplicates 11 Conclusion Basic use of RAND function in Excel Rand function is used to generate random numbers. If we use it directly it generates random numbers between zero and one. Whenever you edit your worksheet, new numbers are generated in the area where RAND functions are placed. The reason of this is, RAND functions are a volatile function. RAND function doesn`t have any arguments. You can enter the =RAND () function in any cell and copy/drag the formula to use it in other cells. The following picture shows the basic use of RAND function where many random numbers All rights reserved to ExcelDemy.com. 1

2 are generated. Uses of RAND function with a range Normally RAND function generates random numbers which are between zero and one. But if you want to produce random numbers between two values you need to modify the RAND function. Specifying the upper limit In this way, you can produce random numbers from 0 too N where N is the upper limit in this case. You just need to multiply the function RAND by N. Let s say we want to generate some random number from 0 too 25. We will multiply 25 with the RAND function. It will produce random numbers in a sequence which are greater than/equal to zero but less than 25. All rights reserved to ExcelDemy.com. 2

3 Note: In excel the upper limit is never included in the sequence of random numbers. If you want to generate numbers between 0 and 4 including 4, you need to specify the upper limit as 5. Generating random numbers between two numbers The previous example shows us the random numbers which are between 0 and any value N. A question might arise that How can we create random numbers between two values that don t start with zero? Well, we can use a formula to execute that which is, RAND () *(Y-X) +X Where Y is the highest value and X is the lowest value in the range. The following picture shows an example of generating arbitrary numbers between 100 and 50. All rights reserved to ExcelDemy.com. 3

4 Note: This formula never returns a number which is the largest is a specific range. Generating Excel random integer with RAND function To create random integer numbers in excel we can use the above two formulas wrapping in INT function. For creating random integers which are between 0 & 25, we can use the formula =INT (RAND () *25) All rights reserved to ExcelDemy.com. 4

5 For creating arbitrary integers between 100 and 50, we can use the formula =INT (RAND () *(50-10) +10) All rights reserved to ExcelDemy.com. 5

6 Use of RANDBETWEEN function In the previous examples, we create random numbers in between two numbers with RAND function. But it is more useful to use RANDBETWEEN functions instead of RAND function in this case. RANDBETWEEN function returns a random number that is between a bottom and top range. Like RAND function RANDBETWEEN is also a volatile function and it will generate new random numbers whenever you edit your worksheet. Generating random integer with RANDBETWEEN function in Excel The interesting thing about using the RANDBETWEEN function is that generally, it will produce integer random number whenever you are using it. Even with the decimal range, it will always generate integer random numbers. To generate numbers with a decimal in the RANDBETWEEN function, you have to edit the general formula. For instance, if you want to create random integers in between 15 and 30 (including 10 and 50), The following formula can be used. =RANDBETWEEN (15, 30) The following picture shows us the result of this example. Generating random numbers with decimal places As stated before, RANDBETWEEN function is designed to produce random integer numbers in excel, but by some little modification, it can also be used to produce random decimal numbers. Let s work with the previous example where we got random integer numbers from 15 too 30. Here instead of getting the integer numbers if we want to get the decimal numbers, the All rights reserved to ExcelDemy.com. 6

7 modification of the formula will be: =RANDBETWEEN(15*10,30*10)/10 The above picture shows us the numbers with 1 decimal place. If we want to get random numbers with 2 decimal places the formula will be =RANDBETWEEN(15*100,30*100)/100 Random letter generator in Excel To produce random letters in excel a combination of three different functions are required. Let s say we want to create random letters from A to Z. We will use the formula as stated below: =CHAR(RANDBETWEEN(CODE( A ),CODE( Z ))) In the above formula: Firstly, numeric ANSI codes for the specified letters are returned by the function CODE. The numbers returned by the CODE functions are taken by the RANDBETWEEN function as the upper and lower values of the range. Finally, corresponding letters are converted by CHAR function (CHAR converts random ANSI codes returned by RANDBETWEEN) All rights reserved to ExcelDemy.com. 7

8 Note: The above formula is case sensitive as the ANSI code is different for upper-case and lower-case characters. Generate random names in excel from a list Generating random names in Excel is so much interesting. You can literally play lottery by doing it. In this example we will be using a column consists of 15 names. One name will be selected randomly from that column/ list. The formula for doing this is given below. =INDEX($A$1:$A$14,RANDBETWEEN(1,14)) All rights reserved to ExcelDemy.com. 8

9 Here the given range is taken as $A$1: $A$14 from the 15 names in column A. From this range we want to take a random name from the top 14 names. RANDBETWEEN (1,14) allows us to take random 14 names for the operation. The INDEX function allows returning a value from the given range. By dragging the formulated cell in upward and downward we can copy the formula for whose cells. Note: It is mandatory to specify the random name range (which is stated in the RANDBETWEEN function here). If the specified random name range is not in the main name range (Here $A$1: $A$14) then it may sometimes ask for references. All rights reserved to ExcelDemy.com. 9

10 As you can see. The main name range is given as $A$1: $A$10 but the specified name range (1,14) from which the names will be generated are not in this range. So, it will ask for references as stated in the above picture. Random dates generator in Excel To produce some arbitrary dates between two dates, we can use the RANDBETWEEN function with DATEVALUE. Here in this example, we generate some dates between 1st March 2018 to 17th March The Formula is given below. Source code =RANDBETWEEN(DATEVALUE("1-Mar-2018"),DATEVALUE("17-Mar-2018")) Note: Sometimes the cells may not give you date rather it will give you some random number. You need to format the cell in specific date format to show dates in the cells. All rights reserved to ExcelDemy.com. 10

11 Random time generator in Excel The procedure of generating arbitrary times between two times is same as above. The formula can be given as =TIMEVALUE( Starting Time ) + RAND() * (TIMEVALUE( Ending Time ) TIMEVALUE( Starting Time )) Here in this example, we use, Source code =TIMEVALUE("12:00 AM") + RAND() * (TIMEVALUE("6:00 PM") - TIMEVALUE("12:00 AM")) All rights reserved to ExcelDemy.com. 11

12 Same thing can be written as, =TIME(Starting Time) + RAND() * (TIME(Ending Time) TIME(Starting Time)) Here in this case the formula will be, Source code =TIME(12,0,0) + RAND() * (TIME(18,0,0) - TIME(12,0,0)) Note: The TIMEVALUE function actually gives a valid time from a text string and TIME function gives time with hours, minutes, and seconds. If you again find a random number instead of time, format the cells with specific time format. Generating Random Dates & Times together To do this, we need to combine RANDBETWEEN, DATEVALUE and TIMEVALUE functions together. Here we used the following formula to create dates and times together in a range. Source code =RANDBETWEEN(DATEVALUE("1-Mar-2018"),DATEVALUE("17- Mar-2018"))+RANDBETWEEN(TIMEVALUE("8:00 AM")*10000,TIMEVALUE("8:00 PM")*10000)/10000 Where the start and end dates are 1-Mar-2018 & 17-Mar-2018 respectively. The start and end times are 8:00 AM & 8:00 PM respectively. All rights reserved to ExcelDemy.com. 12

13 Unique random number generator in Excel (with no duplicates/repeats) Generating random numbers are easy but when it comes to generating unique random numbers the task is complicated. There are so many methods that we can perform. In this article, we will demonstrate some of the methods available for generating unique random numbers. Sorting a list of unique numbers in random order In this method, we will create a list of numbers in serial order. Then again in another column, we will use the RAND function. The two columns, then, will be filtered and we will see that the 1 st column where the numbers are in serial order will be distributed randomly. As the numbers that we provided are not repeated here, we will find a list of unique numbers in a column. 1 st make two columns titled with Number and Random. In the number, column creates a series of 15 numbers in serial order starting from 1. To do this click on the Fill option above and in that click on A box will come up, select columns in there. Write 1 as Step value and 15 as Stop value. Then press OK. In the Random column create a list of arbitrary numbers. Make sure to create the column in the same range with the 1st column All rights reserved to ExcelDemy.com. 13

14 After that click on the Sort & Filter option and click on to Filter In the Random column click any two option Sort Smallest to Largest/Largest to smallest All rights reserved to ExcelDemy.com. 14

15 You will see, by doing the sorting the numbers in the 1 st columns will change their places randomly from one cell to another All rights reserved to ExcelDemy.com. 15

16 Ranking random integers 1 st create some random numbers in a list, let s say create 20 random numbers in column A. IN cell B1 type the formula =RANK(A1,A$1:A$20) and drag this formula to B20 cell. You will see that in column B 20 unique random numbers will be generated All rights reserved to ExcelDemy.com. 16

17 Using the largest values and the MATCH function 1 st create some random numbers in a list, let s say create 10 random numbers in column A. In cell B1, write the formula =MATCH(LARGE($A$1:$A$20, ROW(A1)), $A$1:$A$10, 0) and drag the formula from B1 to B10. It will unique random numbers from 1 to 10 All rights reserved to ExcelDemy.com. 17

18 Note: You can use COLUMN instead of ROW. In that case, you have to drag the formulated cell in right/left side. If you use ROW in the formula and drag it to left/right it will produce the same numbers. Using the RAND and INDEX function 1st create a list of arbitrary numbers, let s say create 10 random numbers in column A. In column B, create 10 Random integer numbers and located them through B1 to B10 Use the formula =INDEX(A$1: A$10, RANK(B1, B$1: B$10)) in cell C1 and drag it down to cell C10. You will see 10 unique random numbers will appear in column D All rights reserved to ExcelDemy.com. 18

19 Excel VBA random number generator with no duplicates Generating unique random number is more efficient in VBA code than using different functions of excel. In excel, there are so many VBA codes available to generate numbers which can be unique or repeated. In this example, I generate 10 arbitrary numbers using VBA code. The code that I used here was collected from this link. I found it very useful, short and effective among all the codes that I found while doing the task. The code is given below. Public Sub generaterandnum() lowerbound = 1 upperbound = 10 Set randomrange = Range( A1:A10 ) randomrange.clear For Each rng1 In randomrange counter = counter + 1 Next If counter > upperbound lowerbound + 1 Then MsgBox ( Number of cells > number of unique random numbers ) Exit Sub End If For Each Rng In randomrange randnum = Int((upperbound lowerbound + 1) * Rnd + lowerbound) Do While Application.WorksheetFunction.CountIf(randomrange, randnum) >= 1 randnum = Int((upperbound lowerbound + 1) * Rnd + lowerbound) Loop Rng.Value = randnum Next End Sub To use this code, follow the following steps. Click on the Developer tab From Code group, select Visual Basic Enter the above code in the worksheet module and run it. You will see that 10 numbers from 1-10 appear in column A. You can modify it by just All rights reserved to ExcelDemy.com. 19

20 changing the upper bound, lower bound and range. The below picture shows the result of the above code. Conclusion Random numbers are useful in so many ways. As we can see there are so many methods of generating random numbers. With the existing RAND and RANDBETWEEN functions, you can not generate unique random numbers directly. Some modifications are required while generating unique random numbers. I hope this article may help you. Please feel free to comment. 53 SHARES FacebookTwitter Siam Hasan Khan Hello! All rights reserved to ExcelDemy.com. 20

21 Welcome to my Profile. Here I will be posting articles related to Microsoft Excel. I have completed my BSc in Electrical and Electronic Engineering from American International University-Bangladesh. I am a diligent, goal-oriented engineer with an immense thirst for knowledge and attitude to grow continuously. Continuous improvement and life-long learning is my motto. All rights reserved to ExcelDemy.com. 21

How to Compare Two Lists or Columns in Excel

How to Compare Two Lists or Columns in Excel While doing different tasks in Excel we often come across a situation where the matching and differences of two or multiple columns are required. It s not a difficult task to find the differences and matches

More information

How to Reduce Large Excel File Size (Ultimate Guide)

How to Reduce Large Excel File Size (Ultimate Guide) Handling a large file is important as it takes a huge amount of time to transfer. A large file takes too much time to open. Any kind of change in a large file takes a long time to update. So, reducing

More information

LEIAG-Excel Workshop

LEIAG-Excel Workshop Random Sample Excel has a simple formula we can utilize to obtain a random sample (cases, citations, city, etc.) At the Sheriff s Department, we are able to run a case management report that generates

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

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets You will do all your works in a workbook file. You can add as many worksheets as you need in a workbook file. Each worksheet appears in its own window. By default, Excel workbooks use a.xlsx file extension.

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

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

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

More information

Microsoft Excel Level 1

Microsoft Excel Level 1 Microsoft Excel 2010 Level 1 Copyright 2010 KSU Department of Information Technology Services This document may be downloaded, printed, or copied for educational use without further permission of the Information

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically MICROSOFT EXCEL and Data Management Unit 3 Thursday March 31, 2016 Allow users to perform simple and complex sorting Allow users to perform calculations quickly Organizes and presents figures that can

More information

Pivot Tables, Lookup Tables and Scenarios

Pivot Tables, Lookup Tables and Scenarios Introduction Format and manipulate data using pivot tables. Using a grading sheet as and example you will be shown how to set up and use lookup tables and scenarios. Contents Introduction Contents Pivot

More information

1. Position your mouse over the column line in the column heading so that the white cross becomes a double arrow.

1. Position your mouse over the column line in the column heading so that the white cross becomes a double arrow. Excel 2010 Modifying Columns, Rows, and Cells Introduction Page 1 When you open a new, blank workbook, the cells are set to a default size.you do have the ability to modify cells, and to insert and delete

More information

EXERCISE B: HOW TO DO RANDOM ASSIGNMENT USING MS EXCEL

EXERCISE B: HOW TO DO RANDOM ASSIGNMENT USING MS EXCEL EXERCISE B: HOW TO DO RANDOM ASSIGNMENT USING MS EXCEL TABLE OF CONTENTS Introduction... 1 Part 1: Simple Randomization... 1 Part 2: Complete randomization... 5 Part 3: stratified randomization... 8 I

More information

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions Course contents Overview: Goodbye, calculator Lesson 1: Get started Lesson 2: Use cell references Lesson 3: Simplify formulas by using functions Overview: Goodbye, calculator Excel is great for working

More information

Excel Simulations - 1

Excel Simulations - 1 Excel Simulations - [] We are going to look at a number of ways Excel can be used to create worksheet simulations that help students visualize concepts. The first type of simulation we will create will

More information

Microsoft Excel 2007 Level 1

Microsoft Excel 2007 Level 1 Information Technology Services Kennesaw State University Microsoft Excel 2007 Level 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied for

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

Microsoft Excel 2013 Series and Custom Lists (Level 3)

Microsoft Excel 2013 Series and Custom Lists (Level 3) IT Training Microsoft Excel 2013 Series and Custom Lists (Level 3) Contents Introduction...1 Extending a Single Cell...1 Built-in Data Series...2 Extending Two Cells...2 Extending Multiple Cells...3 Linear

More information

SUM, AVERAGE, MEDIAN, MIN,

SUM, AVERAGE, MEDIAN, MIN, Lab 3 Activity Name Demonstration Notes Objective 12: Use the SUM, AVERAGE, MEDIAN, MIN, and MAX Functions 5.25 Using the SUM and AVERAGE Functions 5.26 Using the MEDIAN Function Start Excel. Open goaio_1e_08c_script_data.xlsx.

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

Separate, Split & Remove Substring & Number from Text with Excel Functions & VBA

Separate, Split & Remove Substring & Number from Text with Excel Functions & VBA [Editor s Note: This is a guide on how to separate, split & remove substring & numbers from text using Excel Functions and VBA. Examples of substring functions are CHAR, FIND, LEFT, LOWER, MID, PROPER,

More information

Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet

Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet The Main Menu Bar is located immediately below the Program

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

COMPUTING AND DATA ANALYSIS WITH EXCEL. Numerical integration techniques

COMPUTING AND DATA ANALYSIS WITH EXCEL. Numerical integration techniques COMPUTING AND DATA ANALYSIS WITH EXCEL Numerical integration techniques Outline 1 Quadrature in one dimension Mid-point method Trapezium method Simpson s methods Uniform random number generation in Excel,

More information

EDIT202 Spreadsheet Lab Prep Sheet

EDIT202 Spreadsheet Lab Prep Sheet EDIT202 Spreadsheet Lab Prep Sheet While it is clear to see how a spreadsheet may be used in a classroom to aid a teacher in marking (as your lab will clearly indicate), it should be noted that spreadsheets

More information

MICROSOFT EXCEL Understanding Filters

MICROSOFT EXCEL Understanding Filters 07 Understanding Filters Understanding a list UNDERSTANDING FILTERS Before proceeding to the topic on filters, it is best to understand what a list is. A list is basically an organized collection of information.

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

Download the files from you will use these files to finish the following exercises.

Download the files from  you will use these files to finish the following exercises. Exercise 6 Download the files from http://www.peter-lo.com/teaching/x4-xt-cdp-0071-a/source6.zip, you will use these files to finish the following exercises. 1. This exercise will guide you how to create

More information

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar Microsoft Excel 2007 is a spreadsheet application in the Microsoft Office Suite. A spreadsheet is an accounting program for the computer. Spreadsheets are primarily used to work with numbers and text.

More information

Training for ICDL Spreadsheets Spreadsheets 261

Training for ICDL Spreadsheets Spreadsheets  261 261 Module Goals 1 Introduction 2 What is a Spreadsheet? 2 Section 1 Using the Application 3 1.1. Working with 3 1.2. Enhancing Productivity 11 Section 2 Cells 15 2.1. Inserting and Selecting Data 15 2.2.

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

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Chapter 10 Managing Numbers and Text Using Excel 1 Objectives Examine the Excel window and tools Enter and format

More information

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE Strategy for doing well: Work along with the videos, filling out your Excel file(s) step by step. Do this until you can comfortably

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Rio Hondo Prep Computer Applications Class

Rio Hondo Prep Computer Applications Class Open up document 10-1 (this is the one you worked on in the previous assignment). It should look like this: We have one column that is blank; the Avg Speed (this leg), column C. The formula for C2 is pretty

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables SPRING 2016 Spring 2016 CS130 - EXCEL FUNCTIONS & TABLES 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course

More information

ENTERING DATA & FORMULAS...

ENTERING DATA & FORMULAS... Overview NOTESOVERVIEW... 2 VIEW THE PROJECT... 5 NAVIGATING... 6 TERMS... 6 USING KEYBOARD VS MOUSE... 7 The File Tab... 7 The Quick-Access Toolbar... 8 Ribbon and Commands... 9 Contextual Tabs... 10

More information

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Using Numbers, Formulas, and Functions

Using Numbers, Formulas, and Functions UNIT FOUR: Using Numbers, Formulas, and Functions T o p i c s : Using the Sort function Create a one-input data table Hide columns Resize columns Calculate with formulas Explore functions I. Using the

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Select a Row or a Column Place your pointer over the Column Header (gray cell at the top of a column that contains a letter identifying the column)

More information

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1 Excel 2010 Working with Basic Functions Working with Basic Functions Page 1 Figuring out formulas for calculations you want to make in Excel can be tedious and complicated. Fortunately, Excel has an entire

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

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

CMPF124 Microsoft Excel Tutorial

CMPF124 Microsoft Excel Tutorial Lab 5: Microsoft Excel Tutorial Excel Worksheet Microsoft Excel works as account ledger. An Excel Workbook (1) could have multiple Worksheets (2). A cell in Excel is referred by its Column and Row naming

More information

MANUAL FOR ACCESS TO THE DATA OF THE ISI WEB KNOWLEDGE

MANUAL FOR ACCESS TO THE DATA OF THE ISI WEB KNOWLEDGE IMPORTANT: YOU CAN ONLY ACCES TO ISI WEB OF KNOWLEDGE FROM A UAB COMPUTER OR PROPERTY OF ANY OTHER INSTITUTION THAT IS REGISTERED USER OF THIS SITE. MANUAL FOR ACCESS TO THE DATA OF THE ISI WEB KNOWLEDGE

More information

Public Function randomdouble(lowerbound As Double, upperbound As Double) As Double On Error Resume Next

Public Function randomdouble(lowerbound As Double, upperbound As Double) As Double On Error Resume Next Table of Contents Introduction...1 Using VBA Functions...1 Accessing Visual Basic in Excel...2 Some Example Functions...3 Random Numbers...4 RandomDouble...4 randomint...4 Using the random numbers...5

More information

CHAPTER 1 GETTING STARTED

CHAPTER 1 GETTING STARTED GETTING STARTED WITH EXCEL CHAPTER 1 GETTING STARTED Microsoft Excel is an all-purpose spreadsheet application with many functions. We will be using Excel 97. This guide is not a general Excel manual,

More information

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data.

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data. SPREADSHEETS BASIC TERMINOLOGY A Spreadsheet is a grid of rows and columns containing numbers, text, and formulas. A workbook is the file Excel creates to store your data. A worksheet is an individual

More information

How to Remove Duplicate Rows in Excel

How to Remove Duplicate Rows in Excel How to Remove Duplicate Rows in Excel http://www.howtogeek.com/198052/how-to-remove-duplicate-rows-in-excel/ When you are working with spreadsheets in Microsoft Excel and accidentally copy rows, or if

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

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

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

Contents Starting Up Excel... 1 Getting to Know Excel... 2 Workbook... 2 Sheet... 2 Cell... 2 Tabs, Tools, and Uses... 3 Home Tab...

Contents Starting Up Excel... 1 Getting to Know Excel... 2 Workbook... 2 Sheet... 2 Cell... 2 Tabs, Tools, and Uses... 3 Home Tab... Contents Starting Up Excel... 1 Getting to Know Excel... 2 Workbook... 2 Sheet... 2 Cell... 2 Tabs, Tools, and Uses... 3 Home Tab... 3 Conditional Formatting:... 5 Format as a Table:... 5 Insert Tab...

More information

Microsoft Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

MS Office 2016 Excel Pivot Tables - notes

MS Office 2016 Excel Pivot Tables - notes Introduction Why You Should Use a Pivot Table: Organize your data by aggregating the rows into interesting and useful views. Calculate and sum data quickly. Great for finding typos. Create a Pivot Table

More information

Performing Basic Calculations

Performing Basic Calculations 7.1 LESSON 7 Performing Basic Calculations After completing this lesson, you will be able to: Build formulas. Copy formulas. Edit formulas. Use the SUM function and AutoSum. Use the Insert Function feature.

More information

Tutorial 2. Building a Database and Defining Table Relationships

Tutorial 2. Building a Database and Defining Table Relationships Tutorial 2 Building a Database and Defining Table Relationships Microsoft Access 2010 Objectives Learn the guidelines for designing databases and setting field properties Modify the format of a field in

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

Introduction to StatKey Getting Data Into StatKey

Introduction to StatKey Getting Data Into StatKey Introduction to StatKey 2016-17 03. Getting Data Into StatKey Introduction This handout assumes that you do not want to type in the data by hand. This handout shows you how to use Excel and cut and paste

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

Are your spreadsheets filled with unnecessary zero s, cluttering your information and making it hard to identify significant results?

Are your spreadsheets filled with unnecessary zero s, cluttering your information and making it hard to identify significant results? Declutter your Spreadsheets by Hiding Zero Values Are your spreadsheets filled with unnecessary zero s, cluttering your information and making it hard to identify significant results? Undertaking data

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

Working with Data in Microsoft Excel 2010

Working with Data in Microsoft Excel 2010 Working with Data in Microsoft Excel 2010 This document provides instructions for using the sorting and filtering features in Microsoft Excel, as well as working with multiple worksheets in the same workbook

More information

Creating Automated Dashboard Excel 2013 Contents

Creating Automated Dashboard Excel 2013 Contents Creating Automated Dashboard Excel 2013 Contents Summarize Data Using Pivot Table... 2 Constructing Report Summary... 2 Create a PivotTable from worksheet data... 2 Add fields to a PivotTable... 2 Grouping

More information

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting:

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting: Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics Formatting text and numbers In Excel, you can apply specific formatting for text and numbers instead of displaying all cell content

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables Winter 2012 Winter 2012 CS130 - Excel Functions & Tables 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course

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

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 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

AGB 260: Agribusiness Data Literacy. Tables

AGB 260: Agribusiness Data Literacy. Tables AGB 260: Agribusiness Data Literacy Tables Useful Chapters in the Textbook Regarding this Lecture Chapter 5 Tables A table in Excel is a rectangular array of information/attributes where the first row

More information

Ms Excel Dashboards & VBA

Ms Excel Dashboards & VBA Ms Excel Dashboards & VBA 32 hours, 4 sessions, 8 hours each Day 1 Formatting Conditional Formatting: Beyond Simple Conditional Formats Data Validation: Extended Uses of Data Validation working with Validation

More information

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts Tips and Shortcuts Drag Fill 1. Go to the 2016 Sales Report worksheet. 2. In cell E4 key in the calculation =D4-C4 and hit enter. 3. Go back to cell E4 and put your cursor in the bottom right corner of

More information

PHLI Instruction (734) Introduction. Lists.

PHLI Instruction (734) Introduction. Lists. INTERMEDIATE EXCEL Introduction Microsoft Excel has many purposes. In addition to being an excellent data manger, Excel provides the means to perform complex analysis and evaluation of data. This brief

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

Intermediate Microsoft Excel 2008

Intermediate Microsoft Excel 2008 Intermediate Microsoft Excel 2008 Table of Contents ADVANCED FORMATTING... 2 FORMATTING NUMBERS... 2 WRAPPING TEXT... 3 THE MERGE AND CENTER FUNCTIONS... 4 INSERTING COMMENTS... 5 FREEZE PANES... 6 INSERTING

More information

Chapter 13 Creating a Workbook

Chapter 13 Creating a Workbook Chapter 13 Creating a Workbook Learning Objectives LO13.1: Understand spreadsheets and Excel LO13.2: Enter data in cells LO13.3: Edit cell content LO13.4: Work with columns and rows LO13.5: Work with cells

More information

Sort, Filter, Pivot Table

Sort, Filter, Pivot Table Sort, Filter, Pivot Table Sort A common database task is to rearrange the information based on a header/field or headers/fields. This is called Sorting or Filtering. Sorting rearranges all of the information

More information

Watch the video below to learn more about the basics of working with cells. *Video removed from printing pages. Understanding cells

Watch the video below to learn more about the basics of working with cells. *Video removed from printing pages. Understanding cells Excel 06 Cell Basics Introduction Whenever you work with Excel, you'll enter information or content into cells. Cells are the basic building blocks of a worksheet. You'll need to learn the basics of cells

More information

2. INTRODUCTORY EXCEL

2. INTRODUCTORY EXCEL CS130 - Introductory Excel 1 2. INTRODUCTORY EXCEL Fall 2017 CS130 - Introductory Excel 2 Introduction to Excel What is Microsoft Excel? What can we do with Excel? CS130 - Introductory Excel 3 Launch Excel

More information

Excel Training - Beginner March 14, 2018

Excel Training - Beginner March 14, 2018 Excel Training - Beginner March 14, 2018 Working File File was emailed to you this morning, please log in to your email, download and open the file. Once you have the file PLEASE CLOSE YOUR EMAIL. Open

More information

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns.

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns. Table of contents 1. Excel in English 2. Important information 3. LAYOUT 4. Format Painter 5. Format Painter 6. Fix columns 7. Fix columns 8. Create a grid 9. Create a grid 10. Create a numeric sequence

More information

Contents. 1. Managing Seed Plan Spreadsheet

Contents. 1. Managing Seed Plan Spreadsheet By Peter K. Mulwa Contents 1. Managing Seed Plan Spreadsheet Seed Enterprise Management Institute (SEMIs) Managing Seed Plan Spreadsheet Using Microsoft Excel 2010 3 Definition of Terms Spreadsheet: A

More information

Getting the Most from your Microsoft Excel

Getting the Most from your Microsoft Excel Getting the Most from your Microsoft Excel Anne Del Pizzo PATHS, LLC What we will cover What s new in 2007/2010 Conditional formatting Sparklines Pivot Table Slicers Functions Macros Pivot Tables 1 What

More information

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets.

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets. Agenda Unit 1 Assessment Review Progress Reports Intro to Excel Learn parts of an Excel spreadsheet How to Plan a spreadsheet Create a spreadsheet Analyze data Create an embedded chart in spreadsheet In

More information

Objective: Class Activities

Objective: Class Activities Objective: A Pivot Table is way to present information in a report format. The idea is that you can click drop down lists and change the data that is being displayed. Students will learn how to group data

More information

exam. Number: Passing Score: 800 Time Limit: 120 min MICROSOFT Excel 2013 Expert Part One.

exam. Number: Passing Score: 800 Time Limit: 120 min MICROSOFT Excel 2013 Expert Part One. 77-427.exam Number: 77-427 Passing Score: 800 Time Limit: 120 min MICROSOFT 77-427 Excel 2013 Expert Part One Exam E QUESTION 1 Conditional Formatting. Use a formula to determine formatting of a cell.

More information

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting Microsoft Excel 2010 Chapter 2 Formulas, Functions, and Formatting Objectives Enter formulas using the keyboard Enter formulas using Point mode Apply the AVERAGE, MAX, and MIN functions Verify a formula

More information

Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Spreadsheet Basics Excel is a powerful productivity tool. It s a spreadsheet

More information

Spreadsheet Microsoft Excel 2010

Spreadsheet Microsoft Excel 2010 Spreadsheet Microsoft Excel 2010 Prepared by: Teo Siew Copyright 2017 MAHSA UNIVERSITY Faculty of Business, Finance, and Hospitality Spreadsheet A type of application program which manipulates numerical

More information

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font Excel 2013 Shortcuts My favorites: Ctrl+C copy (C=Copy) Ctrl+X cut (x is the shape of scissors) Ctrl+V paste (v is the shape of the tip of a glue bottle) Ctrl+A - or the corner of worksheet Ctrl+Home Goes

More information

Excel Pivot Tables. Step by Step Guide. CONQUER THE FEAR OF EXCEL

Excel Pivot Tables. Step by Step Guide.  CONQUER THE FEAR OF EXCEL Excel Pivot Tables CONQUER THE FEAR OF EXCEL www.learnexcelnow.com Excel Pivot Tables Table of Contents Intro Page 3 Set Up/Build a Pivot Table Page 5 Manipulate the Date Page 7 Report on the Data Page

More information