Excel 2010 Formulas & Functions

Size: px
Start display at page:

Download "Excel 2010 Formulas & Functions"

Transcription

1 Excel is the world s premier spreadsheet software. You can use Excel to analyze numbers, keep track of data, and graphically represent your information. With Excel 2010, you can manage more data than ever, with increased worksheet and workbook sizes. Excel also makes your job easier by providing an easy to use interface, and an array of Excel 2010 Formulas & Functions Module 3 Christine M. Dandaraw, MCT

2 The backbone of Excel is its ability to perform calculations. There are two ways to set up calculations in Excel: using formulas or using functions. Formulas are mathematical expressions that you build yourself. You need to follow proper math principles in order to obtain the expected answer. Building the formula is simply a matter of combining the proper cell addresses with the correct operators in the right order. This module will explore how to build, edit, and copy formulas.

3 Table of Contents Create Basic Formulas... 3 Formula Basics:... 3 Operators used in Formulas:... 4 Calculate with Functions... 5 Editing Formulas... 6 References in Formulas... 7 Quick Calculator... 8 Create an Absolute Reference... 8 Create an Absolute Reference... 9 Arguments... 9 Copying a Formula: Drag and Drop Method To fill formulas Formula Bar The Insert Function Dialog The Insert Function Dialog Search for a Function Select A Category Paste Special Switching Rows of Cells to Columns or Columns to Rows Pasting Only Values, Formulas, Comments, or Cell Formats The Date function Date Functions Date Functions The Days360 Function in Excel Using Financial Functions PMT Function Financial Formulas - by Category Depreciation Formulas Formulas for Interest, Cash Flow, Investments, Annuities Functions for Coupons Finance Formulas for Securities Formulas for Dollar Price Conversions Treasury Bill Functions Using Logical IF Function Performing calculations Displaying text Leaving Cells Blank 26 Diocese of St. Petersburg pg. 2 9/5/2014

4 Create Basic Formulas Formulas are entries that have an equation that calculates the value to display. We DO NOT type in the numbers we are looking for; we type in the equation. This equation will be updated upon the change or entry of any data that is referenced in the equation. Formula Basics: Formulas OR Functions MUST BEGIN with an equal sign (=) so that Excel can distinguish it from text. We use formulas to CALCULATE a value to be displayed. A formula consists of any of the following elements: A. Mathematical operators B. Cell references (including named cells and ranges) C. Values or text D. Worksheet functions (such as SUM or AVERAGE) Examples of formulas: =100*.05 Multiplies 100 times 0.05 (This formula only uses values and therefore is not very useful) =A1*A2 Multiplies the contents of cell A1 by the contents of cell A2 (This formula uses cell references.) =Income-Expenses Subtracts the cell named Expenses from the cell named Income Diocese of St. Petersburg pg. 3 9/5/2014

5 Operators used in Formulas: + Addition - Subtraction * Multiplication / Division ^ Exponentiation & Concatenation = Logical comparison (equal to) > Logical comparison (greater than) < Logical comparison (less than) >= Logical comparison (greater than or equal to) <= Logical comparison (less than or equal to) <> Logical comparison (not equal to) You can use as many operators as you need in a formula. Operator Precedence in Formulas: Excel follows a certain order of operators, when it calculates a formula: 1. Items in parentheses 2. Exponentiation 3. Multiplication and division (from left to right) 4. Addition and subtraction (from left to right) Example: =(B2-B3)*B4 will yield a different result than =B2-B3*B4 Probably the most popular function in any spreadsheet is the SUM function. The Sum function takes all of the values in each of the specified cells and totals their values. The syntax is: =SUM(first value, second value, etc) There are many functions built into many spreadsheets. Diocese of St. Petersburg pg. 4 9/5/2014

6 Average function. The average function finds the average of the specified data. (Simplifies adding all of the indicated cells together and dividing by the total number of cells.) The syntax is as follows. =Average (first value, second value, etc.) Calculate with Functions SUM Example = SUM(C3:G9) Result: Total of all numbers in the range. AVERAGE Example = AVERAGE(C3:G9) Result: Average of all numbers in the range. COUNTIF Example = COUNTIF(C3:G9, >55 ) Result: # of cells in the range containing numbers greater than 55. COUNTA Example =COUNTA(C3:C25) Result: Number of Actual items in row Used in counting groups of similar numbers within a set of data. TODAY() Example = TODAY() Result = current date. Useful for forms that require a date. ROUND Example = ROUND(A4/3,2) Result if A4 = 5 then 5/3 = which is rounded to 1.67 Entering Formulas into Your Worksheet: a. Manually just type the formula starting with the equal sign b. By pointing type an equal sign, click on the cell, type in the operator, click on the next cell Diocese of St. Petersburg pg. 5 9/5/2014

7 Name Box displays the reference of the active cell Drops down a list of names The Cancel Button cancels the entry in the The Enter Button accepts the entry in the formula bar Edit Formula initiates the formula editor Entry Area of the formula bar Active Cell Editing Formulas Excel provides multiple ways to edit the contents of a cell: a. Double click on the cell b. Press F2 while the cell is active c. Click on the formula bar while the cell is active Formula Bar Diocese of St. Petersburg pg. 6 9/5/2014

8 References in Formulas: References identify cells or groups of cells on a worksheet. Column references range from A through IV (256 columns). Row references range from 1 through 16,384 References are of three types: Relative A10 Absolute $A$10 Mixed $A10 or A$10 Use the F4 key to convert relative references to absolute or mixed references. The F4 key cycles through each type. AutoSum AutoSum is a simple mathematical formula to display the total sum of the neighboring cells. Excel chooses these cells automatically based on the ideal usage of the position of the result. AutoSum first checks if there is any continuous group of cells which has numbers above the result cell for its range, then it checks to the left side of the result cell. But the range of cells that are included for the calculation can be reselected manually by dragging if it s wrong. How to use AutoSum? In Excel 2003, you can use the AutoSum symbol (which is a sigma sign) from the toolbar and In Excel 2007, you can find the AutoSum function in the Editing section (which is on the far right side) under Home tab. Keyboard Shortcut to AutoSum in Excel But you can always use the keyboard Shortcut, ALT + = to do the AutoSum. This tip comes very handy if most of your daily calculations depend on addition of values. Diocese of St. Petersburg pg. 7 9/5/2014

9 Quick Tip: AutoSum can be used not only when the values are adjacent to the result cells, but even if it s randomly displayed. All that you have to do is, press ALT+= in the cell where you want the result to be displayed and while holding the CTRL key click all the cells that you want to be included in the result. Quick Calculator When you want a quick calculation of a column highlight the range of cells or entire column and select the quick calculator on the status bar. You can choose from several operators. Diocese of St. Petersburg pg. 8 9/5/2014

10 Create an Absolute Reference Excel accepts cell references in what are called absolute and relative ranges. Absolute ranges have a $ character before either the column portion of the reference and/or the row portion of the reference. Relative ranges do not use the $ character. The $ character indicates to Excel that it should not increment the column and/or row reference as you fill a range with a formula or as you copy a range. For example A1 is a relative range, while $A$1 is an absolute range. If you enter =A1 in a cell and then fill that cell down a column, the '1' in the reference will increment in each row. Thus, the formula in row 50 would be =A50. However, if you enter =$A$1 in a cell and fill down, the range reference will remain $A$1 -- it will not increment as you fill or copy down a column. There are three absolute styles: Reference Style Meaning $A$1 Both the column and row reference is fixed. Neither will be incremented or changed during a copy or fill. $A1 Only the column reference is fixed. It will not change during a fill or copy, but the row will change. A$1 Only the row reference is fixed. It will not change during a fill or copy, but the column will change. Arguments In certain cases, you may need to use a function as one of the arguments of another function. For example, the following formula uses a nested AVERAGE function and compares the result with the value 50. Valid returns When a nested function is used as an argument, it must return the same type of value that the argument uses. For example, if the argument returns a TRUE or FALSE value, then the nested function must return a TRUE or FALSE. If it doesn't, Microsoft Excel displays a #VALUE! error value. Diocese of St. Petersburg pg. 9 9/5/2014

11 Nesting level limits A formula can contain up to seven levels of nested functions. When Function B is used as an argument in Function A, Function B is a second-level function. For instance, the AVERAGE function and the SUM function are both secondlevel functions because they are arguments of the IF function. A function nested within the AVERAGE function would be a third-level function, and so on. Copying a Formula: Drag and Drop Method To fill formulas 1. First, click the cell that contains the formula you want to copy. 2. Move the mouse pointer to the fill handle in the lower right corner of cell until the mouse pointer changes to a large black plus sign. 3. Then drag across to the cell where you want to drop the formula. 4. Release the mouse button, Excel fills the cell with the formula. Enter a function in Formula Pallet Select the cell where you want to insert the function. Click the Insert Menu and click the Function. Select the function you want to use and click OK. Enter the function arguments and click OK. Tips Diocese of St. Petersburg pg. 10 9/5/2014

12 You can adjust the size of the Formula Bar. Click and drag the rounded edge of the Name Box to adjust it horizontally. To adjust it vertically, click and drag the bottom border of the Formula Bar or click the Expand Formula Bar button at the end of the Formula Bar. You can use the Formula AutoComplete feature to help you create and edit complex formulas. Type an = (equal sign) in a cell or the Formula Bar and start typing the formula. As you do this, a list appears of functions and names that fit with the text you entered. Select an item from the list to insert it into the formula. Formula Bar Click the cell in which you want to enter the formula. 1. In the formula bar, type = (equal sign). 2. Do one of the following: To create a reference, select a cell, a range of cells, a location in another worksheet, or a location in another workbook. You can drag the border of the cell selection to move the selection, or drag the corner of the border to expand the selection. To enter a reference to a named range, press F3, select the name in the Paste name box, and click OK. 3. Press ENTER. Diocese of St. Petersburg pg. 11 9/5/2014

13 The following formulas contain functions. Example formula What it does =SUM(A:A) Adds all numbers in column A =AVERAGE(A1:B4) Averages all numbers in the range 1. Click the cell in which you want to enter the formula. 2. To start the formula with the function, click Insert Function on the formula bar. 3. Select the function you want to use. You can enter a question that describes what you want to do in the Search for a function box (for example, "add numbers" returns the SUM function), or browse from the categories in the Or Select a category box. 4. Enter the arguments. To enter cell references as an argument, click Collapse Dialog to temporarily hide the dialog box. Select the cells on the worksheet, then press Expand Dialog. 5. When you complete the formula, press ENTER. Diocese of St. Petersburg pg. 12 9/5/2014

14 The Insert Function Dialog Called the Paste Function dialog in older versions, but the Insert Function dialog in newer versions, this dialog box is used to insert or paste the selected function into the chosen cell. The big advantage to using this feature comes as you become more comfortable writing Excel formulas. Initially it is most beneficial because it can be used as a step-by-step guide for each argument in a function. What this means is, if you are going to be using a simple function such as the SUM, MIN, MAX etc., it really serves no purpose. When writing slightly harder functions such as COUNTIF, SUMIF etc., it can aid greatly. Let s display the Insert Function dialog and have a superficial look at it. There are three methods we can use to show this dialog box and which one you use is purely optional. The three methods are: Going to Insert>Function Push Shift + F3 Click the Insert Function icon to the left of your Formula bar (Fx), or for older version users, click the Paste Function icon on your Standard toolbar. Once activated you will see the Insert Function dialog pop up in front of you. Depending on which version of Excel you are using, these heading names may vary slightly in this dialog box. Diocese of St. Petersburg pg. 13 9/5/2014

15 Search for a Function Type a brief description of what you want to do in this box, then click Go to view a list of appropriate Functions. Select A Category In this dialog box you will see the Category Names that the Functions are grouped in. Click All to see a list of All Functions displayed in the Select A Function: box in alphabetical order. Click Most Recently Used to see a list of the last 10 functions used in the Select a Function: box. Paste Special Instead of copying entire cells, you can copy specified cell contents - such as the cell format or the result of a formula, but not the formula itself - with the Paste Special command. You can also switch data from columns to rows and vice versa. Switching Rows of Cells to Columns or Columns to Rows 1. Select the cells that you want to switch. 2. Open the Edit menu and select Copy. 3. Select the upper left cell of the paste area. The paste area must be outside the copy area. 4. Open the Edit menu and select Paste Special. 5. Select the Transpose check box. 6. Click OK. Diocese of St. Petersburg pg. 14 9/5/2014

16 Pasting Only Values, Formulas, Comments, or Cell Formats 1. Select the cell or range of cells you want to copy. 2. Open the Edit menu and select Copy. 3. Click the cell you want to paste the information into, or click the upper left boundary of the cell range you want to paste the information into. 4. Open the Edit menu and select Paste Special. 5. Select Formula to copy only the formula of the cell. 6. Highlight Values to copy only the outcome of the formula you copied into the cell and not the formula itself. 7. Select Format to copy just the format of the cell (font, alignment, and so on). 8. Choose Comments to copy only annotations for the cell. 9. Click OK to accept the option you selected. The Date function To enter the current date into the spreadsheet use the =NOW() function 1. Select the cell in the spreadsheet where you want the date to appear. 2. Type = NOW ( ) in the cell to add the current date to the spreadsheet. 3. Press the ENTER key on the keyboard. Diocese of St. Petersburg pg. 15 9/5/2014

17 Date Functions To enter a date Function, do the following: 1. Click on Insert from the menu bar 2. From the drop down menu, click on Function 3. In the Function category section, click on Date & Time 4. In the Function name section, click on Date 5. Click the OK button at the bottom 6. The formula palette appears on your spreadsheet 7. Click inside the Year box and enter the year 8. Click inside the Month box and enter the number of the month (e.g. 10 for October) 9. Click inside the Day box and enter the number 15 (The 15th day - or enter another number, if you want.) 10. Click the OK button at the bottom 11. Excel enters the Date in cell. Diocese of St. Petersburg pg. 16 9/5/2014

18 Notice how the date Function is set out in the Formula box. It is set out as =Date(2008, 10, 15). However, in cell the date appears as 4/15. It has missed out the year completely! The reason Excel has missed the year out is because of the way cell was formatted. To change the formatting of cell, click on Format form the menu bar. From the drop down menu, click on Cells. The format dialogue box appears. Click the Number tab strip at the top. Under Category, click on Date. A list of different date types appears in the Type list. The following picture shows this: The Type section of the dialogue box is where you set how you want your date to look. At the moment, the first option is selected 3/14. Scroll down and click on March 14, Then click the OK button at the bottom. Your spreadsheet will now look like this one: Diocese of St. Petersburg pg. 17 9/5/2014

19 The Days360 Function in Excel The Function to use when you want to work out how many days difference there are between two dates is the Date360( ) function. So click on cell you wish to have the results appear and do the following: 1. From the menu bar, click on Insert 2. From the drop down list, click on Function 3. The Paste Function dialogue box appears 4. Under Function category, click on Date & Time 5. Under Function name, click on Days360( ) 6. Click the OK button at the bottom 7. The formula palette appears on your spreadsheet: What Excel is looking for here is two dates: a start date and an end date. Click inside the Method box and enter True (This will ensure that Excel calculates from the European date system.) Click the OK button when you're done. Your spreadsheet might look like the one below: Diocese of St. Petersburg pg. 18 9/5/2014

20 Make sure that your cell is formatted as a number, and set the Decimal places to zero. Your spreadsheet will then show the correct answer, like the one below: Entering dates can be fairly straightforward. But performing calculations with dates can be slightly more complex. Using Financial Functions PMT Function "Calculates the payment for a loan based on constant payments and a constant interest rate." 1. Click on Insert from the menu bar 2. From the drop down menu, click on Function 3. In the Function category click on Date & section, Time Diocese of St. Petersburg pg. 19 9/5/2014

21 In the Function name section, click on Choose "Financial" from the box that says "Or select a category" and choose PMT from the list below. Click OK and you will be with this box presented Now, all you have to do is fill in the boxes and Excel will give you your answer: 1. In the "Rate" box, type is the cell reference that contains your interest rate. However, the lending agency will give you the YEARLY rate and what you need is the MONTHLY rate, so, you need to put B5/12 in this box (that s B5 divided by 12 months in a year) 2. The "Nper" box is for the number of payment periods and we have that entered in B3, so put B3 in this box. (TIP: You don t have to type B3 in the box. If your cursor is positioned in the box, you can just click on cell B3 and Excel will put it in the box for you.) 3. The "Pv" box is for the present value, or the amount you are going to pay. That value is in B4, so put B4 in that box. Diocese of St. Petersburg pg. 20 9/5/2014

22 4. Notice that "Fv" and "Type" are not in bold like the others. This is because these arguments are optional, whereas the bold ones are mandatory. See at the bottom of the box that Excel tells you that Fv is the future value and if you leave it empty, Excel will assume 0 (zero). Since you want to pay this loan off entirely, you want a zero balance, so just hit your tab key to leave this empty and move to the "Type" box. 5. Lending agencies often offer different payment amounts if the load is paid at the beginning of the month than if it is paid at the end of the month. Your lending agency will tell you if they offer this. For now, put a zero (0) in that box, assuming you will pay this loan at end of the month. 6. Then click OK. Your spreadsheet should now look like this and you see your monthly payments with these choices are $ And, if you want to know if you can retire early, try Excel s Financial Function named "FV" and see if you can figure out how to determine what that savings plan you have will be worth in 25 years. Diocese of St. Petersburg pg. 21 9/5/2014

23 Financial Formulas - by Category Financial functions, with a * next those that are only available after installing the Analysis ToolPak (To install, go to Tools > Add-ins > and select Analysis ToolPak). Depreciation Formulas DB - Fixed-Declining Balance DDB - Double-Declining Balance SLN - Straight-Line Depreciation SYD - Sum-of-Years' Digits VDB - Variable Declining Balance * AMORLINC - (for the French accounting system) Depreciation for each accounting period * AMORDEGRC - (for the French accounting system) Uses a depreciation coefficient Formulas for Interest, Cash Flow, Investments, Annuities * CUMIPMT - Cumulative Interest Payment * CUMPRINC - Cumulative Principal * EFFECT - Effective annual interest rate FV - Future Value of an investment * FVSCHEDULE - Future Value with a variable rate IPMT - Interest Payment for an investment or loan IRR - Internal Rate of Return ISPMT - Interest Payment during a Specific period (for compatibility with Lotus) MIRR - Modified Internal Rate of Return NPER - Number of Periods for an investment or loan NPV - Net Present Value formula PMT - Periodic Payment for an annuity PPMT - Payment on the Principal for an annuity or loan PV - Present Value of an investment RATE - Interest rate per period * XIRR - Internal Rate of Return (not necessarily periodic) * XNPV - Net Present Value (not necessarily periodic) Functions for Coupons * COUPDAYBS - Days from the Beginning of the Coupon period to the Settlement date * COUPDAYS - Days in the coupon period that contains the Settlement date * COUPDAYSNC - Days from the Settlement date to the Next Coupon date * COUPNCD - Next Coupon Date after the settlement date * COUPPCD - Previous Coupon Date before the settlement date * COUPNUM - Number of coupons between the settlement and maturity date Diocese of St. Petersburg pg. 22 9/5/2014

24 Finance Formulas for Securities * ACCRINT - Accrued Interest * ACCRINTM - Accrued Interest at Maturity * DISC - Discount rate * DURATION - Annual Duration * INTRATE - Interest rate for a fully invested security * MDURATION - Macauley modified duration (with an assumed par value of $100) * NOMINAL - Annual nominal interest rate * ODDFPRICE - Price per $100 face value with an Odd First period * ODDFYIELD - Yield with an Odd First period * ODDLPRICE - Price per $100 face value with an Odd Last period * ODDLYIELD - Yield with an Odd Last period * PRICE - Price per $100 face value * PRICEDISC - Price per $100 face value of a Discounted security * PRICEMAT - Price per $100 face value of a security that pays interest at Maturity * RECEIVED - Amount received at maturity for a fully invested security * YIELD - Yield on a security that pays periodic interest * YIELDDISC - Annual yield for a discounted security (Treasury bill) * YIELDMAT - Annual yield of a security that pays interest at maturity Formulas for Dollar Price Conversions * DOLLARDE - Converts a dollar price from a Fraction to a Decimal number * DOLLARFR - Converts a dollar price from a Decimal number to a Fraction Treasury Bill Functions * TBILLEQ - Bond-equivalent yield for a Treasury Bill * TBILLPRICE - Price per $100 face value for a Treasury Bill * TBILLYIELD - Yield for a Treasury Bill Diocese of St. Petersburg pg. 23 9/5/2014

25 Using Logical IF Function The IF function is one of Excel s most useful and most used functions. What it does, basically, is test to see whether a certain condition is true or false. If the condition is true, the function will do one thing, if the condition is false, the function will do something else. The basic form or syntax of the function is: =IF(logic test, value if true, value if false) The logic test is always a comparison between two values. Comparison operators are used, for example, to see if the first value is greater than or less than the second, or equal to it. The "value if true" and "value if false" parts of the function are known as arguments. They tell the function what to do, depending on the outcome of the logic test. Nested IF Functions A Nested IF function is when a second IF function is placed inside the first in order to test additional conditions. "Nesting" IF functions increases the flexibility of the function by increasing the number of possible outcomes. For example, deductions from an employee's income usually depends on employee income. The higher the income, the higher the deduction rate. We can use an IF function to determine what the deduction rate will be. For this example, if employee income is: less than $29,701, the deduction rate is 15% greater than or equal to $29,701, but less than $71,950, the deduction rate is 25% greater than or equal to $71,950, the deduction rate is 28% Diocese of St. Petersburg pg. 24 9/5/2014

26 The first deduction rate is handled by the logic test and the value if true argument of the first IF function. To do this, we write the beginning of the IF function as: =IF(A5 < 29701, A5*15%, To add the second and third deduction levels, we nest one IF function inside another. For example: =IF(A5<29701,A5*15%,IF(A5<71950,A5*25%,A5*28%)) The logic test of the Nested IF function, checks to see if a employee s income is greater than or equal to $29,701, but less than $71,950. If it is, the deduction rate is 25%. If the income is greater than or equal to $71,950, the deduction rate is 28%. Additional rate changes could be added another nested IF functions inside the existing function. Note: there is no comma separator in 29,701 or 71,950 in the above example. This is because the IF function uses the comma to separate the three sections of the IF function contained within the round brackets. If you use a comma as a separator in numbers greater than a thousand, Excel will give you an error message saying you have too many arguments in your function. Performing calculations The IF function can perform different calculations depending on whether the function returns a true value or not. The example below uses different deduction rates in its calculations based on employee income. =IF(A5 < 29701, A5 * 15%, A5 * 25%) If employees earn above a certain level, one deduction rate will be used in the calculation, if their income is below this level, a different deduction rate will be used. What the above example does is test to see if the value in cell A5 is less than 29,701. If it is, the function multiplies the value in cell A5 by 15%(the "value if true" argument). If the value in A5 is greater than or equal to 29,701, then the amount in cell A5 is multiplied by 25% (the "value if false" argument). Diocese of St. Petersburg pg. 25 9/5/2014

27 Displaying text Having text displayed by an IF function rather than a number can make it easier to find and read specific results in the spreadsheet. Below, the example IF function is setup to test whether a student's mark is greater than or equal to 50. If it is, "Passed" is written into the target cell. If not, the word "Failed" appears. =IF(A5>=50, Passed, Failed ) A second example could be used by a company to quickly determine which employees are entitled to a bonus for exceeding a certain level of production. =IF(A5>=5000, Pay Bonus, No Bonus ) Leaving Cells Blank Having an IF function return a blank cell is similar to having it return words or a text statement. You use quotation marks as with text, but just don t put anything between them. =IF(A5 > 5000, Too High, ) In this example, the IF function acts as a flag. If the value in cell A5 goes above 5,000, the warning Too High is displayed in the cell. If A5 is not above 5,000, there is no need for a warning so the cell remains blank. Diocese of St. Petersburg pg. 26 9/5/2014

EXCEL FUNCTIONS MOST COMMON

EXCEL FUNCTIONS MOST COMMON EXCEL FUNCTIONS MOST COMMON This is a list of the most common Functions in Excel with a description. To see the syntax and a more in depth description, the function is a link to the Microsoft Excel site.

More information

How To Calculate Net Present Value In Excel 113

How To Calculate Net Present Value In Excel 113 11. Introduction to Discounted Cash Flow Analysis and Financial Functions in Excel John Herbohn and Steve Harrison The financial and economic analysis of investment projects is typically carried out using

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

Creating Basic Excel Formulas

Creating Basic Excel Formulas Creating Basic Excel Formulas Formulas are equations that perform calculations on values in your worksheet. Depending on how you build a formula in Excel will determine if the answer to your formula automatically

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

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

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Microsoft Excel Tips & Tricks

Microsoft Excel Tips & Tricks Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Excel Project 4. 1. From the Start menu select New Office Document. If necessary, click the General tab and then double-click Blank workbook.

Excel Project 4. 1. From the Start menu select New Office Document. If necessary, click the General tab and then double-click Blank workbook. Excel Project 4 Two of the more powerful aspects of Excel are its wide array of functions and its capability to organize answers to what-if questions. In earlier projects you were introduced to several

More information

A User Manual for Benefit Cost Analysis Using Microsoft Excel

A User Manual for Benefit Cost Analysis Using Microsoft Excel A User Manual for Benefit Cost Analysis Using Microsoft Excel Canesio Predo National Abaca Research Center Leyte State University Baybay, Leyte, Philippines David James Ecoservices Pty Ltd NSW, Australia

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Introduction to Excel

Introduction to Excel Introduction to Excel This material has been reprinted, with permission, from the Excel Tutorial on the TRIO program webpage of the University of South Dakota. A series of "screencast" videos covering

More information

Performing Simple Calculations Using the Status Bar

Performing Simple Calculations Using the Status Bar Excel Formulas Performing Simple Calculations Using the Status Bar If you need to see a simple calculation, such as a total, but do not need it to be a part of your spreadsheet, all you need is your Status

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Formatting Formatting Tables

Formatting Formatting Tables Intermediate Excel 2013 One major organizational change introduced in Excel 2007, was the ribbon. Each ribbon revealed many more options depending on the tab selected. The Help button is the question mark

More information

Microsoft Excel 2010. Understanding the Basics

Microsoft Excel 2010. Understanding the Basics Microsoft Excel 2010 Understanding the Basics Table of Contents Opening Excel 2010 2 Components of Excel 2 The Ribbon 3 o Contextual Tabs 3 o Dialog Box Launcher 4 o Quick Access Toolbar 4 Key Tips 5 The

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

Formulas & Functions in Microsoft Excel

Formulas & Functions in Microsoft Excel Formulas & Functions in Microsoft Excel Theresa A Scott, MS Biostatistician II Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.edu Table of Contents 1 Introduction 1 1.1 Using

More information

Q&As: Microsoft Excel 2013: Chapter 2

Q&As: Microsoft Excel 2013: Chapter 2 Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

Excel. Microsoft Office s spreadsheet application can be used to track. and analyze numerical data for display on screen or in printed

Excel. Microsoft Office s spreadsheet application can be used to track. and analyze numerical data for display on screen or in printed Excel Microsoft Office s spreadsheet application can be used to track and analyze numerical data for display on screen or in printed format. Excel is designed to help you record and calculate data, and

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

What is Microsoft Excel?

What is Microsoft Excel? What is Microsoft Excel? Microsoft Excel is a member of the spreadsheet family of software. Spreadsheets allow you to keep track of data, create charts based from data, and perform complex calculations.

More information

MICROSOFT EXCEL 2010. Formulas, Functions, & Macros. Documented by Vincent J. Yanusauskas Computer Training Coordinator

MICROSOFT EXCEL 2010. Formulas, Functions, & Macros. Documented by Vincent J. Yanusauskas Computer Training Coordinator MICROSOFT EXCEL 2010 Formulas, Functions, & Macros Documented by Vincent J. Yanusauskas Computer Training Coordinator Introduction This handout was created to familiarize the user with the most common

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

Using Basic Financial and Logical Functions

Using Basic Financial and Logical Functions LESSON 8 Using Basic Financial and Logical Functions 8.1 After completing this lesson, you will be able to: Use the PMT function to forecast loan payments. Calculate cumulative interest. Compute investment

More information

NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions.

NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions. NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions. PV Returns the present value of an investment. The present

More information

ROUND(cell or formula, 2)

ROUND(cell or formula, 2) There are many ways to set up an amortization table. This document shows how to set up five columns for the payment number, payment, interest, payment applied to the outstanding balance, and the outstanding

More information

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net 2015 County Auditors Institute May 2015 Excel Workshop Tips Working Smarter, Not Harder by David Scott, SpeakGeek@att.net Note: All examples in this workshop and this tip sheet were done using Excel 2010

More information

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

Macros in Word & Excel

Macros in Word & Excel Macros in Word & Excel Description: If you perform a task repeatedly in Word or Excel, you can automate the task by using a macro. A macro is a series of steps that is grouped together as a single step

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Formulas & Functions in Microsoft Excel

Formulas & Functions in Microsoft Excel Formulas & Functions in Microsoft Excel Theresa A Scott, MS Biostatistician III Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.edu Table of Contents 1 Introduction 1 1.1 Using

More information

Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals

Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals Excel 2003 Instructions Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals contains extensive instructions for using Excel 2010 and Excel for Mac 2011. There are a few instances

More information

Excel: Introduction to Formulas

Excel: Introduction to Formulas Excel: Introduction to Formulas Table of Contents Formulas Arithmetic & Comparison Operators... 2 Text Concatenation... 2 Operator Precedence... 2 UPPER, LOWER, PROPER and TRIM... 3 & (Ampersand)... 4

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

Computer Training Centre University College Cork. Excel 2013 Level 1

Computer Training Centre University College Cork. Excel 2013 Level 1 Computer Training Centre University College Cork Excel 2013 Level 1 Table of Contents Introduction... 1 Opening Excel... 1 Using Windows 7... 1 Using Windows 8... 1 Getting Started with Excel 2013... 2

More information

SECTION 2: Working with Functions and Formulas

SECTION 2: Working with Functions and Formulas SECTION 2: Working with Functions and Formulas In this section you will learn about: Relative and absolute cell references Basic mathematical operators Using formulas with multiple cell references Fixing

More information

Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel

Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel Introduction to MS Excel 2007 2 Table of Contents Getting started

More information

How To Use Excel With A Calculator

How To Use Excel With A Calculator Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function

More information

Excel 2010 Level 2. Computer Training Centre, UCC, tcentre@ucc.ie, 021-4903749/3751/3752

Excel 2010 Level 2. Computer Training Centre, UCC, tcentre@ucc.ie, 021-4903749/3751/3752 Excel 2010 Level 2 Computer Training Centre, UCC, tcentre@ucc.ie, 021-4903749/3751/3752 TABLE OF CONTENTS What s New in Excel 2010? 1 The File Menu 1 Enhanced Ribbon Toolbar 1 Sparklines 2 Slicer 2 Macro

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 The biggest difference between Excel 2007 and its predecessors is the new layout. All of the old functions are still there (with some new additions), but they are now located

More information

Microsoft Excel 2010 and Tools for Statistical Analysis

Microsoft Excel 2010 and Tools for Statistical Analysis Appendix E: Microsoft Excel 2010 and Tools for Statistical Analysis Microsoft Excel 2010, part of the Microsoft Office 2010 system, is a spreadsheet program that can be used to organize and analyze data,

More information

MICROSOFT EXCEL STEP BY STEP GUIDE

MICROSOFT EXCEL STEP BY STEP GUIDE IGCSE ICT SECTION 14 DATA ANALYSIS MICROSOFT EXCEL STEP BY STEP GUIDE Mark Nicholls ICT Lounge Data Analysis Self Study Guide Contents Learning Outcomes Page 3 What is a Data Model?... Page 4 Spreadsheet

More information

PMT. 0 or omitted At the end of the period 1 At the beginning of the period

PMT. 0 or omitted At the end of the period 1 At the beginning of the period PMT Calculates the payment for a loan based on constant payments and a constant interest rate. PMT(rate,nper,pv,fv,type) For a more complete description of the arguments in PMT, see the PV function. Rate

More information

Chapter 9 Creating Reports in Excel

Chapter 9 Creating Reports in Excel Chapter 9 Creating Reports in Excel One of the most powerful features of Standard & Poor s Research Insight is its ability to communicate with Microsoft Excel through Active-X Technology. Excel requests

More information

How To Analyze Data In Excel 2003 With A Powerpoint 3.5

How To Analyze Data In Excel 2003 With A Powerpoint 3.5 Microsoft Excel 2003 Data Analysis Larry F. Vint, Ph.D lvint@niu.edu 815-753-8053 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 Copyright

More information

CREATING FORMAL REPORT. using MICROSOFT WORD. and EXCEL

CREATING FORMAL REPORT. using MICROSOFT WORD. and EXCEL CREATING a FORMAL REPORT using MICROSOFT WORD and EXCEL TABLE OF CONTENTS TABLE OF CONTENTS... 2 1 INTRODUCTION... 4 1.1 Aim... 4 1.2 Authorisation... 4 1.3 Sources of Information... 4 2 FINDINGS... 4

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers?

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers? Understanding formulas Basic Formulas in Excel Formulas are placed into cells whenever you want Excel to add, subtract, multiply, divide or do other mathematical calculations. The formula should be placed

More information

Rows & Columns. Workbooks & Worksheets

Rows & Columns. Workbooks & Worksheets + O + N + P + S F12 + W + Q Esc + C + X + V + Z + Y + A + F Ctrl + H + Tab +, + Y The Fundamentals + Option + R Open File New File Print Save File Save File As Close File Close Excel Exit Dialog Copy Cut

More information

Introduction to Microsoft Excel 1 Part I

Introduction to Microsoft Excel 1 Part I Introduction to Microsoft Excel 1 Part I Objectives When you complete this workshop you will be able to: Recognize Excel s basic operations and tools; Develop simple worksheets; Use formulas; Format worksheets;

More information

INTRODUCTION TO EXCEL

INTRODUCTION TO EXCEL INTRODUCTION TO EXCEL 1 INTRODUCTION Anyone who has used a computer for more than just playing games will be aware of spreadsheets A spreadsheet is a versatile computer program (package) that enables you

More information

Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8

Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8 Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8 University of Sheffield Contents 1. INTRODUCTION... 3 2. OVERVIEW OF SPREADSHEETS... 3 3. GETTING STARTED... 4 3.1 STARTING EXCEL

More information

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Excel file for use with this tutorial Tutor1Data.xlsx File Location http://faculty.ung.edu/kmelton/data/tutor1data.xlsx Introduction:

More information

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540 To complete this technology assignment, you should already have created a scatter plot for your data on your calculator and/or in Excel. You could do this with any two columns of data, but for demonstration

More information

PA Payroll Exercise for Intermediate Excel

PA Payroll Exercise for Intermediate Excel PA Payroll Exercise for Intermediate Excel Follow the directions below to create a payroll exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

2014 Securexam Guide Tips

2014 Securexam Guide Tips 2014 Securexam Guide Tips For candidates planning to write the UFE or regional evaluations Chartered Professional Accountants of Canada, CPA Canada, CPA are trademarks and/or certification marks of the

More information

PV Tutorial Using Excel

PV Tutorial Using Excel EYK 15-3 PV Tutorial Using Excel TABLE OF CONTENTS Introduction Exercise 1: Exercise 2: Exercise 3: Exercise 4: Exercise 5: Exercise 6: Exercise 7: Exercise 8: Exercise 9: Exercise 10: Exercise 11: Exercise

More information

Almost all spreadsheet programs are based on a simple concept: the malleable matrix.

Almost all spreadsheet programs are based on a simple concept: the malleable matrix. MS EXCEL 2000 Spreadsheet Use, Formulas, Functions, References More than any other type of personal computer software, the spreadsheet has changed the way people do business. Spreadsheet software allows

More information

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts Supplement to Excel for Budget Analysts Version 1.0: February 2016 Table of Contents Introduction... 4 Formulas and Functions... 4 Math and Trigonometry Functions... 5 ABS... 5 ROUND, ROUNDUP, and ROUNDDOWN...

More information

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2007 Advanced Formulas Windows XP Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Formulas ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. How to Create Formulas... 2 2. Naming Ranges... 5 3. Common

More information

MICROSOFT EXCEL FORMULAS

MICROSOFT EXCEL FORMULAS MICROSOFT EXCEL FORMULAS Building Formulas... 1 Writing a Formula... 1 Parentheses in Formulas... 2 Operator Precedence... 2 Changing the Operator Precedence... 2 Functions... 3 The Insert Function Button...

More information

Differences in Use between Calc and Excel

Differences in Use between Calc and Excel Differences in Use between Calc and Excel Title: Differences in Use between Calc and Excel: Version: 1.0 First edition: October 2004 Contents Overview... 3 Copyright and trademark information... 3 Feedback...3

More information

Microsoft Excel 2007. Introduction to Microsoft Excel 2007

Microsoft Excel 2007. Introduction to Microsoft Excel 2007 Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Excel is an electronic spreadsheet to organize your data into rows and columns. One can use it to perform basic to advanced level mathematical

More information

UNDERSTANDING HEALTHCARE FINANCIAL MANAGEMENT, 5ed. Time Value Analysis

UNDERSTANDING HEALTHCARE FINANCIAL MANAGEMENT, 5ed. Time Value Analysis This is a sample of the instructor resources for Understanding Healthcare Financial Management, Fifth Edition, by Louis Gapenski. This sample contains the chapter models, end-of-chapter problems, and end-of-chapter

More information

Using Microsoft Project 2000

Using Microsoft Project 2000 Using MS Project Personal Computer Fundamentals 1 of 45 Using Microsoft Project 2000 General Conventions All text highlighted in bold refers to menu selections. Examples would be File and Analysis. ALL

More information

OX Spreadsheet Product Guide

OX Spreadsheet Product Guide OX Spreadsheet Product Guide Open-Xchange February 2014 2014 Copyright Open-Xchange Inc. OX Spreadsheet Product Guide This document is the intellectual property of Open-Xchange Inc. The document may be

More information

Introduction to the TI-Nspire CX

Introduction to the TI-Nspire CX Introduction to the TI-Nspire CX Activity Overview: In this activity, you will become familiar with the layout of the TI-Nspire CX. Step 1: Locate the Touchpad. The Touchpad is used to navigate the cursor

More information

Formulas, Functions and Charts

Formulas, Functions and Charts Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

warpct.com Working with MS Excel 2003 Workbook courseware by WARP! Computer Training

warpct.com Working with MS Excel 2003 Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training Working with MS Excel 2003 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training

More information

Microsoft Excel 2007 and Tools for Statistical Analysis David R. Anderson, Dennis J. Sweeney, and Thomas A. Williams

Microsoft Excel 2007 and Tools for Statistical Analysis David R. Anderson, Dennis J. Sweeney, and Thomas A. Williams ASW_MBS_Primer_Web.qxd 11/1/07 1:41 PM Page 1 Microsoft Excel 2007 and Tools for Statistical Analysis David R. Anderson, Dennis J. Sweeney, and Thomas A. Williams Microsoft Excel 2007, part of the Microsoft

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

2015 SECUREXAM TIPS GUIDE

2015 SECUREXAM TIPS GUIDE 2015 SECUREXAM TIPS GUIDE Chartered Professional Accountants of Canada, CPA Canada, CPA are trademarks and/or certification marks of the Chartered Professional Accountants of Canada. 2015, Chartered Professional

More information

Excel Basics By Tom Peters & Laura Spielman

Excel Basics By Tom Peters & Laura Spielman Excel Basics By Tom Peters & Laura Spielman What is Excel? Microsoft Excel is a software program with spreadsheet format enabling the user to organize raw data, make tables and charts, graph and model

More information

Excel Functions (fx) Click the Paste Function button. In the Function Category select All. Scroll down the Function Name list And select SUM.

Excel Functions (fx) Click the Paste Function button. In the Function Category select All. Scroll down the Function Name list And select SUM. Excel Functions (fx) Excel has prewritten formulas called functions to help simplify making complicated calculations. A function takes a value or values, performs an operation, and returns a result to

More information

ECDL / ICDL Spreadsheets Syllabus Version 5.0

ECDL / ICDL Spreadsheets Syllabus Version 5.0 ECDL / ICDL Spreadsheets Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Spreadsheets. The syllabus describes, through learning outcomes, the knowledge and skills that a

More information

Advanced Microsoft Excel 2013

Advanced Microsoft Excel 2013 Advanced Microsoft Excel 2013 Introduction Microsoft Excel is program designed to efficiently manage spreadsheets and analyze data. It contains both basic and advanced features that anyone can learn. Once

More information

How to Use Excel for Law Firm Billing

How to Use Excel for Law Firm Billing How to Use Excel for Law Firm Billing FEATURED FACULTY: Staci Warne, Microsoft Certified Trainer (MCT) (801) 463-1213 computrainhelp@hotmail.com Staci Warne, Microsoft Certified Trainer (MCT) Staci Warne

More information

Microsoft Excel - XP Intermediate

Microsoft Excel - XP Intermediate Microsoft Excel - XP Intermediate Financial Functions Goal Seeking Variable Tables IF Statements AND & OR Functions Mathematical Operations Between Separate Sheets Mathematical Operations Between Separate

More information

Excel Spreadsheets: Getting Started

Excel Spreadsheets: Getting Started Excel Spreadsheets: Getting Started EXCEL REVIEW 2003-2004 Excel Spreadsheets: Getting Started Review this guide for tips on some of the basic skills you need to get started building and using spreadsheets.

More information

How To Use Excel 4.4.2.2 On A Computer Or A Computer With A Cell Phone Or Cell Phone

How To Use Excel 4.4.2.2 On A Computer Or A Computer With A Cell Phone Or Cell Phone M04_GASK8219_01_SE_C04E.qxd 6/30/10 7:53 AM Page 241 chapter 4 Excel 2010 Use Financial and Lookup Functions, Define Names, and Validate Data OUTCOMES At the end of this chapter you will be able to: PROJECT

More information

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL CHAPTER 3 Smart Excel Appendix Use the Smart Excel spreadsheets and animated tutorials at the Smart Finance section of http://www.cengage.co.uk/megginson. Appendix Contents Excel prerequisites Creating

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

Using Excel 2000 to Create a Weighted-Grade Grade Book

Using Excel 2000 to Create a Weighted-Grade Grade Book Using Excel 2000 to Create a Weighted-Grade Grade Book This handout assumes that you already have familiarity with creating and copying formulas in Excel 2000. If you do not, you should consult our handout

More information

Create a Poster Using Publisher

Create a Poster Using Publisher Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

You will use these functions a moderate amount, much more so for due diligence and analysis of order/customer/other data than in financial models.

You will use these functions a moderate amount, much more so for due diligence and analysis of order/customer/other data than in financial models. What This Guide Covers and How to Use It Rather than re-explaining every single function here, we re mostly going to give you solid examples that demonstrate how to use each function. Note that this guide

More information