CIS300 - Study Guide for Test 3

Size: px
Start display at page:

Download "CIS300 - Study Guide for Test 3"

Transcription

1 Coverage Management Information Systems Chapter 7: Databases and Data Warehouses (concepts only) Succeeding in Business with Microsoft Excel 2010 slides Chapter 7: Organizing Data for Effective Analysis Functions (Date/Time-related): DATE, TODAY, YEAR, MONTH, DAY, DATEDIF, YEARFRAC, WEEKDAY, NOW, HOUR, MINUTE, SECOND (more emphasis on Date than Time functions) Functions (Text Manipulation): CONCATENATE, LEFT, RIGHT, MID, LEN, FIND, UPPER, LOWER, PROPER, CLEAN, TRIM, EXACT, ISTEXT, REPLACE, SUBSTITUTE Succeeding in Business with Microsoft Excel 2010 slides Chapter 6: Evaluating the Financial Impact of Loans/Investments Functions (Financial): PMT, NPER, RATE, FV, PV (watch videos and review examples on Web) Excel - Advanced Conditional Functions: AVERAGEIFS, COUNTIFS, SUMIFS Excel - Lists, Tables, Auto Filters, Advanced Filters, Sorting Includes all Homework Assignments to date as well as Business Case Study (BCS) - Part 1 Database Functions: DAVERAGE, DCOUNT, DCOUNTA, DMAX, DMIN, DSUM PivotTables and PivotCharts TIP! Suggested Review Strategy Excel 1. Start with a detailed review of the Test 3 Review slides in the Session 18 folder for helpful hints. 2. Review the respective Excel slides and MIS presentation slides in Course Documents folder (or your pre-printed copy) and study your personal notes that you recorded during related lectures. 3. Review the Summary information, Key Terms, and Review Questions at the end of each MIS chapter. Some of this information is also available on the Web using the link below. 4. Re-read (and further research) any textbook material that you do not thoroughly understand. If necessary, spend some time in the Tutorials folder getting specific help for Excel topics. 5. Visit the Companion Web site for MIS at the URL noted in the Course Sylalbus to review the Glossary of Key Terms in order to assess how familiar you are with the respective MIS material. 6. Finally, take Sample Test 3 (and possible Sample Tests 1 and 2 again) which is available in the Tests folder of Blackboard to get some additional experience with the format and content (Excel only) of questions that will be included on Test 3. You will need to be familiar with the syntax for each of the following functions as well as know under what circumstances to use them, how to apply each of them, and how to create nested formulas. TODAY - Returns the serial number of the current date. The serial number is the datetime code used by Microsoft Excel for date and time calculations. If the cell format was General before the function was entered, the result is formatted as a date. Excel stores all dates as sequential serial numbers so they can be used in calculations. By default, January 1, 1900 is serial number 00001, and January 1, 2008 is serial number because it is 39,448 days after January 1, The F9 function key can be pressed to update any date functions used in a worksheet. =TODAY() one of the very few Excel functions that has no arguments

2 Page 2 NOW - Returns the serial number of the current date and time. If the cell format was General before the function was entered, the result is formatted as a date. Numbers to the right of the decimal point in the serial number represent the time; numbers to the left represent the date. For example, the serial number.5 represents the time 12:00 noon. The NOW function changes only when the worksheet is calculated or when a macro that contains the function is run. It is not updated continuously. =NOW() another one of the very few Excel functions that has no arguments DATE - Returns the sequential serial number that represents a particular date. If the cell format was General before the function was entered, the result is formatted as a date. The DATE function is most useful in formulas where year, month, and day are formulas, not constants. Dates should be entered by using the DATE function, or as results of other formulas or functions. =DATE(year,month,day) year The year argument can be one to four digits. Microsoft Excel interprets the year argument according to the date system you are using. month is a number representing the month of the year. If month is greater than 12, month adds that number of months to the first month in the year specified. For example, =DATE(2008,14,2) returns the serial number that represents February 2, day is a number representing the day of the month. If day is greater than the number of days in the month specified, day adds that number of days to the first day in the month. For example, =DATE(2008,1,35) returns the serial number representing February 4, YEAR - Returns the year corresponding to a date. The year is returned as an integer in the range =YEAR(serial_number) serial_number is the date of the year that you want to find MONTH - Returns the month of a date represented by a serial number. The month is given as an integer, ranging from 1 (January) to 12 (December). =MONTH(serial_number) serial_number is the date of the month that you want to find DAY - Returns the day of a date, represented by a serial number. The day is given as an integer ranging from 1 to 31. =DAY(serial_number) serial_number is the date of the day that you want to find YEARFRAC - Calculates the fraction of the year represented by the number of whole days between two dates (the start_date and the end_date). Use the YEARFRAC worksheet function to identify the proportion of a whole year's benefits or obligations to assign to a specific term. If this function is not available, and returns the #NAME? error, then you must install and load the Analysis ToolPak add-in.

3 Page 3 =YEARFRAC(start_date,end_date,basis) start_date is a date the represents the start date end_date is a date the represents the end date basis is the type of day count basis to use: 0 (or omitted) US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: All arguments are truncated to integers. If start_date or end_date are not valid dates, YEARFRAC returns the #VALUE! error. If basis < 0 or if basis > 4, YEARFRAC returns the #NUM! error value. DATEDIF - Returns the difference between two date values, based on the interval specified. =DATEDIF((start_date,end_date,interval) start_date is a date the represents the start date end_date is a date the represents the end date interval is the interval of time to use to calculate the difference between the two dates based on the following: Interval Y M D MD YM YD Explanation The number of complete years. The number of complete months. The number of days. The difference between the days (months and years are ignored). The difference between the months (days and years are ignored). The difference between the days (years and dates are ignored). TIME - Returns the decimal number for a particular time. If the cell format was General before the function was entered, the result is formatted as a date.the decimal number returned by TIME is a value ranging from 0 (zero) to , representing the times from 0:00:00 (12:00:00 AM) to 23:59:59 (11:59:59 P.M.). =TIME(hour,minute,second) hour is a number from 0 (zero) to representing the hour. Any value greater than 23 will be divided by 24 and the remainder will be treated as the hour value. For example, =TIME(27,0,0) is equivalent to =TIME(3,0,0) or.125 or 3:00 AM.

4 Page 4 minute is a number from 0 to representing the minute. Any value greater than 59 will be converted to hours and minutes. For example, =TIME(0,750,0) is equivalent to =TIME(12,30,0) or or 12:30 PM. second is a number from 0 to representing the second. Any value greater than 59 will be converted to hours, minutes, seconds. For example, =TIME(0,0,2000) is equivalent to =TIME(0,33,22) or or 12:33:20 AM. HOUR - Returns the hour of a time value. The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). =HOUR(serial_number) serial_number is the time that contains the hour you want to find. Times may be entered as text strings within quotation marks (for example, "6:45 PM"), as decimal numbers (for example, , which represents 6:45 PM), or as results of other formulas or functions. MINUTE - Returns the seconds of a time value. The second is given as an integer in the range 0 (zero) to 59. =MINUTE(serial_number) serial_number is the time that contains the minute you want to find. Times may be entered as text strings within quotation marks (for example, "6:45 PM"), as decimal numbers (for example, , which represents 6:45 PM), or as results of other formulas or functions. SECOND - Returns the seconds of a time value. The second is given as an integer in the range 0 (zero) to 59. =SECOND(serial_number) serial_number is the time that contains the seconds you want to find. Times may be entered as text strings within quotation marks (for example, "6:45 PM"), as decimal numbers (for example, , which represents 6:45 PM), or as results of other formulas or functions. CONCATENATE - joins up to 255 text strings into one text string. The joined items can be text, numbers, cell references, or a combination of those items =CONCATENATE(text1,[text2], ) text1 the first item of text to be concatenated text2 optional text strings to concatenate, up to 255 items, separated by commas Note: You can also use the ampersand (&) calculation operator instead of the CONCATENATE function to join text items; e.g., the expression =A1 & B1 returns the same value as =CONCATENATE(A1, B1)

5 Page 5 FIND - finds one text string (find_text) within another text string (within_text), and returns the number of the starting position of find_text =FIND(find_text,within_text,start_num) find_text is the text you want to find within_text is the text that you want to search start_num specifies the character position to start the search; if this is omitted, it is assumed to be 1 Note: Unlike SEARCH, the FIND function is case-sensitive LEN - returns the number of characters in a text string or cell reference =LEN(text) text is the text string or cell reference whose length you want to find, including any spaces within the text string or cell reference LEFT - returns the first character or characters in a text string based on the number of characters specified =LEFT(text, num_chars) text is the text string (or cell) that contains the characters that you want to extract num_chars is the number of characters to extract Must be positive - if omitted, the default is 1 If greater than length of text, the entire text string is returned RIGHT - returns the last character or characters in a text string based on the number of characters specified =RIGHT(text, num_chars) text is the text string (or cell) that contains the characters that you want to extract num_chars is the number of characters to extract Must be positive - if omitted, the default is 1 If greater than length of text, entire text returned CLEAN - removes all nonprintable characters from text. Use CLEAN on text imported from other applications that contains characters that may not print with your operating system. For example, you can use CLEAN to remove some low-level computer code that is frequently at the beginning and end of data files and cannot be printed. =CLEAN(text) text is the text string or cell reference from which you want to remove any nonprintable characters (ASCII codes 1 through 32)

6 Page 6 TRIM - removes all spaces from text except for single spaces between words; use this function on text you receive from another application that may have irregular spacing =TRIM(text) text is the text string or cell reference from which you want spaces removed EXACT - compares two text strings and returns TRUE if they are identical, FALSE if not =EXACT(text1, text2) text1 the first text string text2 the second text string Note: EXACT is case-sensitive but ignores any formatting differences ISTEXT - returns TRUE if the value refers to a text string =ISTEXT(value) value is the text string or cell reference you want to test REPLACE - replaces part of a text string, based on the number of characters you specify, with a different text string =REPLACE(old_text, start_num, num_chars, new_text) old_text text in which you want to replace some characters (required) start_num the positon of the character in the old_text that you want to replace with the new_text (required) num_chars the number of characters in old_text that you want the REPLACE function to replace with new_text (required) new_text the text that will replace the characters in old_text (required) SUBSTITUTE - Substitutes new_text for old_text in a text string. Use SUBSTITUTE when you want to replace specific text in a text string; use REPLACE when you want to replace any text that occurs in a specific location in a text string =SUBSTITUTE(text, old_text, new_text, [instance_num]) text the text or the reference to a cell containing text for which you want to substitute characters old_text the text you want to replace old-text with (required) instance_num specifies which occurrence of old_text you want to replace with new_text. If you specify instance_num, only that instance of old_text is replaced. Otherwise, every occurrence of old_text in text is changed to new_text. (optional)

7 Page 7 AVERAGEIFS - returns the arithmetic mean of all cells that meet multiple criteria =COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2] ) average_range specify one or more cells to average, including numbers or names, ranges, or cell references that contain numbers. Blank and text values are ignored. (required) criteria_range1 is the first range in which to evaluate the associated criteria (required) criteria1 is the criteria in the form of a number, expression, cell reference, or text that define which cells will be added (required) criteria_range2, criteria2, Additional ranges and their associated criteria. Up to 127 range/criteria pairs are allowed. (optional) Note: If average_range is a blank or text value, AVERAGEIFS returns a #DIV!0 error value. If a cell in a range is empty, AVERAGEIFS treats it as a 0 value. You can use the wildcard characters - the question mark (?) and asterisk (*) - when specifying criteria. COUNTIFS - applies criteria to cells across multiple ranges and counts the number of times all criteria are met =COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2] ) criteria_range1 is the first range in which to evaluate the associated criteria (required) criteria1 is the criteria in the form of a number, expression, cell reference, or text that define which cells will be counted (required) criteria_range2, criteria2, Additional ranges and their associated criteria. Up to 127 range/criteria pairs are allowed. (optional) Note: Each additional range must have the same number of rows and columns as the criteria_range1 argument. The ranges do not have to be adjacent to each other. SUMIFS - adds the cells in a range that meet multiple criteria =COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2] ) sum_range specify one or more cells to sum, including numbers or names, ranges, or cell references that contain numbers. Blank and text values are ignored. (required) criteria_range1 is the first range in which to evaluate the associated criteria (required) criteria1 is the criteria in the form of a number, expression, cell reference, or text that define which cells will be added (required) criteria_range2, criteria2, Additional ranges and their associated criteria. Up to 127 range/criteria pairs are allowed. (optional) Note: Unlike the range and criteria arguments in the SUMIF function, in the SUMIFS function, each criteria_range argument must contain the same number of rows and columns as the sum_range argument. You can use the

8 Page 8 wildcard characters - the question mark (?) and asterisk (*) - when specifying criteria. PMT - calculates the payment for a loan based on constant payments and a constant interest rate =PMT(rate, nper, pv, [fv], [type]) rate interest rate for the loan (required) nper total number of payments (required) pv the present value or principal (required) fv the future value - usually 0. (optional) type indicates when payments will begin (optional) RATE - returns the interest rate per period of an annuity; RATE is calculated iteratively =RATE(nper, pmt, pv, [fv], [type], [guess]) nper total number of payments (required) pmt the payment made each period and cannot change over the life of the annuity (required) pv the present value or principal (required) fv the future value - usually 0. (optional) type number 0 or 1 and indicates when payments are due (optional - 0=beginning, 1=end) guess your guess at what the interest rate will be (optional - default value is 10%) NPER - returns the number of periods for an investment based on periodic, constant payments and a constant interest rate =NPER(rate, pmt, pv, [fv], [type]) rate interest rate for the loan (required) pmt the payment made each period and cannot change over the life of the annuity (required) pv the present value or principal (required) fv the future value - usually 0. (optional) type number 0 or 1 and indicates when payments are due (optional - 0=beginning, 1=end)

9 Page 9 PV - returns the present value of an investment; the present value is the total amount that a series of future payments is worth now =PV(rate, pmt, pv, [fv], [type]) rate interest rate for the loan (required) nper total number of payments (required) pmt the payment made each period and cannot change over the life of the annuity (required) fv the future value - usually 0. (optional) type number 0 or 1 and indicates when payments are due (optional - 0=beginning, 1=end) FV - returns the future value of an investment based on periodic, constant payments and a constant interest rate =FV(rate, pmt, pv, [fv], [type]) rate interest rate for the loan (required) nper total number of payments (required) pmt the payment made each period and cannot change over the life of the annuity (required) pv the present value or principal (required) type number 0 or 1 and indicates when payments are due (optional - 0=beginning, 1=end) Information about specific Excel functions (by category) may be found at Microsoft Office Online: And, here s a couple of other useful Web sites to help with Excel functions and formulas: Additional useful Web-based references as well as specific page notations in both the required and supplemental Excel textbooks may be found on the last two pages of the Homework Instructions PDF document. These may be downloaded from the Assignments folder within Blackboard. In addition to Excel functions previously covered for the first test, you will need to be familiar with the syntax for each of the basic Excel functions as well as know under what circumstances to use them, how to apply them, and how to create formulas using them, including when they are nested together with other Excel functions. Nested IF statements (multiple IFs) are included. A few other useful Web sites to help with these new Excel functions and formulas include: RZ aspx?CTT=1

10 Page NOTE: Take Sample Test 3 (Password: 2EZ2cu!) multiple times - this should help you quite a bit. Be sure to review your results from the Sample Test to ensure that you thoroughly understand any Excel questions you may have missed. Other useful Excel material includes HW 1, 2, 3, and BCS - Part 1. Tips for Tests Use the current release of Chrome, Firefox, IE or Safari Read instructions thoroughly before you begin the test and then each question carefully If a dialog box is presented asking you to Run or install software, then click OK to do so Scroll on through the questions initially, find an easy one to answer, then Save the test Use the Edit > Find tab or Ctrl + F in any of the browsers to quickly search for specific text Right click, then left click to enter data, text, or formula into a Fill-in-the-Blank Use the Save button at the bottom of the test, not the one to the right of each question Make an initial pass through the test in the first minutes to answer those that you can Do not get wrapped around the axle on a given question - simply move on to the next one If you get stumped on a question, make an educated guess or use process of elimination If you have any questions or issues during the test, ask your professor for assistance * Note: You are strongly encouraged to use Excel software in solving any test problems * Instructions The following was copied from the Directions and Instructions that accompany an initial draft of Test 3. Keep in mind that these are preliminary in nature, so be sure to carefully read them again when opening up Test 3. This Test is closed book, closed notes, and no Internet resources. You are strongly encouraged to use Excel and may copy your answers from Excel back into an answer space on the test in Blackboard to avoid making any typographical errors on a formula or value. It is anticipated that you will need at least an hour and fifteen minutes to complete this test, so time yourself accordingly. You cannot stop in the middle and restart later. Test 3 contains approximately 25 questions related to Chapter 7 of the Management Information Systems text. These are predominantly conceptual in nature and are primarily in multiple choice format with a few true / false

11 Page 11 thrown in. There are also about 30 questions pertaining to the Succeeding in Business with Microsoft Excel 2010 slides - Chapters 1, 2, 4, 5, 6 and 7. For your Excel responses, do not use a Defined Name for any table ranges or fixed cell references unless specified. While many of these questions are multiple choice, there will also be a few true / false, multiple answer, and fill in the blank questions, potentially including some with multiple parts that will need to be solved. There are no essay or short answer format questions. A handful of Extra Credit questions primarily covering material from in-class discussions have also been thrown in - you should expect these to be a bit more challenging, so you might want to work on these only after responding to the other test questions. If you happen to get stuck on a question or portion thereof, simply move on and come back to it later on during the test. If after you come back to a question and are still stuck, it is a good idea to at least take a "best guess" at the question. Just remember that guessing on multiple answer questions should be done judiciously. Some credit may be awarded for partial responses on fill in the blank or multi-part format questions. Be sure to save your responses often during the test using the Save button at the bottom of the test. Make the instructor or teaching assistant aware of any technical issues (such as a "Save in Progress" error message) that you may encounter while taking the test. You may not use Excel software on this test, but may use a pen/pencil, paper, and calculator. You should review all of your responses before clicking on the Submit button at the bottom of the test. Use the current release of any of the four major browsers (Chrome, Firefox, IE or Safari) and then log into Blackboard directly (do not use ULink) to take all tests. Good luck!

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

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

SOME EXCEL FORMULAS AND FUNCTIONS

SOME EXCEL FORMULAS AND FUNCTIONS SOME EXCEL FORMULAS AND FUNCTIONS About calculation operators Operators specify the type of calculation that you want to perform on the elements of a formula. Microsoft Excel includes four different types

More information

Microsoft Excel 2007 Critical Data Analysis Using Functions

Microsoft Excel 2007 Critical Data Analysis Using Functions V O L U M E 4 Microsoft Excel 007 Critical Data Analysis Using Functions DASH DESIGNS CONSULTING Technology Training and Consulting Services Excel 007 Critical Data Analysis Using Functions For The Haas

More information

USC Marshall School of Business Academic Information Services. Excel 2007 Qualtrics Survey Analysis

USC Marshall School of Business Academic Information Services. Excel 2007 Qualtrics Survey Analysis USC Marshall School of Business Academic Information Services Excel 2007 Qualtrics Survey Analysis DESCRIPTION OF EXCEL ANALYSIS TOOLS AVAILABLE... 3 Summary of Tools Available and their Properties...

More information

Calculating Loan Payments

Calculating Loan Payments IN THIS CHAPTER Calculating Loan Payments...............1 Calculating Principal Payments...........4 Working with Future Value...............7 Using the Present Value Function..........9 Calculating Interest

More information

Detail Report Excel Guide for High Schools

Detail Report Excel Guide for High Schools StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...

More information

How To Use Excel To Compute Compound Interest

How To Use Excel To Compute Compound Interest Excel has several built in functions for working with compound interest and annuities. To use these functions, we ll start with a standard Excel worksheet. This worksheet contains the variables used throughout

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

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

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

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

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28 Excel Intermediate Table of Contents Formulas UPPER, LOWER, PROPER AND TRM...2 LEFT, MID, and RIGHT...3 CONCATENATE...4 & (Ampersand)...5 CONCATENATE vs. & (Ampersand)...5 ROUNDUP, and ROUNDDOWN...6 VLOOKUP...7

More information

NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER

NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...

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

TIME VALUE OF MONEY. Hewlett-Packard HP-12C Calculator

TIME VALUE OF MONEY. Hewlett-Packard HP-12C Calculator SECTION 1, CHAPTER 6 TIME VALUE OF MONEY CHAPTER OUTLINE Clues, Hints, and Tips Present Value Future Value Texas Instruments BA II+ Calculator Hewlett-Packard HP-12C Calculator CLUES, HINTS, AND TIPS Present

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

Working with Data in Microsoft Excel 2003

Working with Data in Microsoft Excel 2003 Working with Data in Microsoft Excel 2003 Doc 5.94 Ver 2 March 2005 John Matthews Central Computing Services Abstract This document provides some examples of handling numeric data using the Microsoft Excel

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

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

EUROPEAN COMPUTER DRIVING LICENCE. Module AM4, Spreadsheets, Advanced - Level

EUROPEAN COMPUTER DRIVING LICENCE. Module AM4, Spreadsheets, Advanced - Level EUROPEAN COMPUTER DRIVING LICENCE Module AM4, Spreadsheets, Advanced - Level Copyright ª 2001 The ECDL Foundation Ltd. All rights reserved. No part of this publication may be reproduced in any form except

More information

Excel s Business Tools: What-If Analysis

Excel s Business Tools: What-If Analysis Excel s Business Tools: Introduction is an important aspect of planning and managing any business. Understanding the implications of changes in the factors that influence your business is crucial when

More information

Excel: Further Functions

Excel: Further Functions IT Training Excel: Further Functions Jane Barrett, IT Training & Engagement Team Information System Services Version 4.1 Scope Learning outcomes Understand basic cell manipulation using formulas and formatting

More information

Data exploration with Microsoft Excel: univariate analysis

Data exploration with Microsoft Excel: univariate analysis Data exploration with Microsoft Excel: univariate analysis Contents 1 Introduction... 1 2 Exploring a variable s frequency distribution... 2 3 Calculating measures of central tendency... 16 4 Calculating

More information

MICROSOFT EXCEL 2010 ANALYZE DATA

MICROSOFT EXCEL 2010 ANALYZE DATA MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate

More information

Smart Web. User Guide. Amcom Software, Inc.

Smart Web. User Guide. Amcom Software, Inc. Smart Web User Guide Amcom Software, Inc. Copyright Version 4.0 Copyright 2003-2005 Amcom Software, Inc. All Rights Reserved. Information in this document is subject to change without notice. The software

More information

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE ADVANCED SPREADSHEETS

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE ADVANCED SPREADSHEETS EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE ADVANCED SPREADSHEETS The European Computer Driving Licence Foundation Ltd. Portview House Thorncastle Street Dublin 4 Ireland

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

6: Financial Calculations

6: Financial Calculations : Financial Calculations The Time Value of Money Growth of Money I Growth of Money II The FV Function Amortisation of a Loan Annuity Calculation Comparing Investments Worked examples Other Financial Functions

More information

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Microsoft

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

Page 1 EXPERT. 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates. 356 (Step 7 Tip) Merging multiple workbooks

Page 1 EXPERT. 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates. 356 (Step 7 Tip) Merging multiple workbooks Page 1 EXPERT Study Guide for MOS Objectives (Expert) in Microsoft Excel 2013 Illustrated 1.0 Manage and Share Workbooks 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates 356

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

Course Contents For All : Advance Excel & VBA Macros

Course Contents For All : Advance Excel & VBA Macros Pankaj Kumar Gupta: Trainer Advanced Excel & VBA Macros Ph. 8750676667, 9871076667, Email: info@advancedexcel.net, advancedexcel07@gmail.com www.advancedexcel.net, www.vbamacrosexcel.com Office Address:

More information

Computer Training Centre University College Cork. Excel 2013 Pivot Tables

Computer Training Centre University College Cork. Excel 2013 Pivot Tables Computer Training Centre University College Cork Excel 2013 Pivot Tables Table of Contents Pivot Tables... 1 Changing the Value Field Settings... 2 Refreshing the Data... 3 Refresh Data when opening a

More information

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at:

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at: TRIM: Web Tool Accessing TRIM Records through the Web The TRIM web tool is primarily aimed at providing access to records in the TRIM system. While it is possible to place records into TRIM or amend records

More information

Module 5: Interest concepts of future and present value

Module 5: Interest concepts of future and present value file:///f /Courses/2010-11/CGA/FA2/06course/m05intro.htm Module 5: Interest concepts of future and present value Overview In this module, you learn about the fundamental concepts of interest and present

More information

Module 5: Interest concepts of future and present value

Module 5: Interest concepts of future and present value Page 1 of 23 Module 5: Interest concepts of future and present value Overview In this module, you learn about the fundamental concepts of interest and present and future values, as well as ordinary annuities

More information

Advanced Excel for Institutional Researchers

Advanced Excel for Institutional Researchers Advanced Excel for Institutional Researchers Presented by: Sandra Archer Helen Fu University Analysis and Planning Support University of Central Florida September 22-25, 2012 Agenda Sunday, September 23,

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

How To Understand And Understand A Function In Excel 3.5

How To Understand And Understand A Function In Excel 3.5 Microsoft Excel 2010 Microsoft Office Specialist 2010 Series COURSEWARE 3244 1 EXAM 77 888 Achieve more Microsoft Office Specialist 2010 Microsoft Excel Expert Certification 2010 Lesson 3: Formulas and

More information

Excel Working with Data Lists

Excel Working with Data Lists Excel Working with Data Lists Excel Working with Data Lists Princeton University COPYRIGHT Copyright 2001 by EZ-REF Courseware, Laguna Beach, CA http://www.ezref.com/ All rights reserved. This publication,

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

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

PortfolioCenter Export Wizard in Practice: Evaluating IRA Account Holder Ages and Calculating Required Minimum Distribution (RMD) Amounts

PortfolioCenter Export Wizard in Practice: Evaluating IRA Account Holder Ages and Calculating Required Minimum Distribution (RMD) Amounts PortfolioCenter Export Wizard in Practice: Evaluating IRA Account Holder Ages and Calculating Required Minimum Distribution (RMD) Amounts One way you can apply the PortfolioCenter Export Wizard in your

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Tables & Pivot Tables ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. What is an Excel Table?... 2 2. Creating Pivot

More information

Dick Schwanke Finite Math 111 Harford Community College Fall 2015

Dick Schwanke Finite Math 111 Harford Community College Fall 2015 Using Technology to Assist in Financial Calculations Calculators: TI-83 and HP-12C Software: Microsoft Excel 2007/2010 Session #4 of Finite Mathematics 1 TI-83 / 84 Graphing Calculator Section 5.5 of textbook

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

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Useful Microsoft Excel Functions & Formulas Theresa A Scott, MS Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.

Useful Microsoft Excel Functions & Formulas Theresa A Scott, MS Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt. Useful Microsoft Excel Functions & s Theresa Scott, MS Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.edu This document contains a series of examples that illustrate some useful

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

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

3 What s New in Excel 2007

3 What s New in Excel 2007 3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to

More information

CS-150L Computing for Business Students Future Value of a Retirement Annuity

CS-150L Computing for Business Students Future Value of a Retirement Annuity CS-150L Computing for Business Students Future Value of a Retirement Annuity Instructor: Matthew Barrick e-mail: barrick@cs.unm.edu www.cs.unm.edu/~barrick Office: Farris Engineering Center (FEC) room

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

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

Importing TSM Data into Microsoft Excel using Microsoft Query

Importing TSM Data into Microsoft Excel using Microsoft Query Importing TSM Data into Microsoft Excel using Microsoft Query An alternate way to report on TSM information is to use Microsoft Excel s import facilities using Microsoft Query to selectively import the

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

Power Users Series: Excel Databases

Power Users Series: Excel Databases Power Users Series: Excel Databases Northern New York Library Network Workshop www.nnyln.org Jim Crowley C3 Crowley Computer Consulting 9148 State Highway 37 Ogdensburg NY 13669 315 394 7008 315 394 7009

More information

Create a PivotTable or PivotChart report

Create a PivotTable or PivotChart report Page 1 of 5 Excel Home > PivotTable reports and PivotChart reports > Basics Create or delete a PivotTable or PivotChart report Show All To analyze numerical data in depth and to answer unanticipated questions

More information

In-Depth Guide Advanced Spreadsheet Techniques

In-Depth Guide Advanced Spreadsheet Techniques In-Depth Guide Advanced Spreadsheet Techniques Learning Objectives By reading and completing the activities in this chapter, you will be able to: Create PivotTables using Microsoft Excel Create scenarios

More information

Excel 2002. What you will do:

Excel 2002. What you will do: What you will do: Explore the features of Excel 2002 Create a blank workbook and a workbook from a template Format a workbook Apply formulas to a workbook Create a chart Import data to a workbook Share

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 Tutorial: How to use EXCEL for Graphs and Calculations.

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your

More information

PeopleSoft Query Training

PeopleSoft Query Training PeopleSoft Query Training Overview Guide Tanya Harris & Alfred Karam Publish Date - 3/16/2011 Chapter: Introduction Table of Contents Introduction... 4 Navigation of Queries... 4 Query Manager... 6 Query

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co.

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co. Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the

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

MS Excel: Advanced Functions. Lesson Notes Author: Pamela Schmidt

MS Excel: Advanced Functions. Lesson Notes Author: Pamela Schmidt Round Function MS Excel: Advanced Functions Lesson Notes Author: Pamela Schmidt =ROUND(cell,number of digits to round) i.e. cell D2 = 45.256 =round(d2,1) would return 45.3 =round(d2,2) would return 45.26

More information

A Quick Tour of F9 1

A Quick Tour of F9 1 A Quick Tour of F9 1 Table of Contents I. A Quick Tour of F9... 3 1. Getting Started... 3 2. Quick Trial Balance... 7 3. A More Dynamic Table Report... 10 II. The Fundamental F9 Formula... 14 The GL Formula...

More information

SAM Brief Student User Guide

SAM Brief Student User Guide SAM Assessment, Training and Projects for Microsoft Office December 2015 SAM Brief Student User Guide Contents Introduction 1 How to Use SAM 2 Logging in the First Time as a Pre-registered Student 2 Profile

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

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

DALHOUSIE NOTES ON PAYROLL EXPENSE DETAIL IN FINANCE SELF SERVICE. QUICK REFERENCE As of September 1, 2015

DALHOUSIE NOTES ON PAYROLL EXPENSE DETAIL IN FINANCE SELF SERVICE. QUICK REFERENCE As of September 1, 2015 DALHOUSIE NOTES ON PAYROLL EXPENSE DETAIL IN FINANCE SELF SERVICE QUICK REFERENCE As of September 1, 2015 Quick reference document outlining the basic steps to access the payroll expense detail results

More information

GDP11 Student User s Guide. V. 1.7 December 2011

GDP11 Student User s Guide. V. 1.7 December 2011 GDP11 Student User s Guide V. 1.7 December 2011 Contents Getting Started with GDP11... 4 Program Structure... 4 Lessons... 4 Lessons Menu... 4 Navigation Bar... 5 Student Portfolio... 5 GDP Technical Requirements...

More information

Excel for Mac Text Functions

Excel for Mac Text Functions [Type here] Excel for Mac Text Functions HOW TO CLEAN UP TEXT IN A FLASH This document looks at some of the tools available in Excel 2008 and Excel 2011 for manipulating text. Last updated 16 th July 2015

More information

The Time Value of Money

The Time Value of Money CHAPTER 7 The Time Value of Money After studying this chapter, you should be able to: 1. Explain the concept of the time value of money. 2. Calculate the present value and future value of a stream of cash

More information

By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke

By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke SPREADSHEETS FOR MARKETING & SALES TRACKING - DATA ANALYSIS TOOLS USING MS EXCEL By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke Objectives By the end of the session, participants

More information

SPV Reporting Tool VBA Code User Guide. Last Updated: December, 2009

SPV Reporting Tool VBA Code User Guide. Last Updated: December, 2009 SPV Reporting Tool VBA Code User Guide Last Updated: December, 2009 SPV Reporting Tool Excel VBA Functionalities Golden Copy Golden Copy - Introduction This portion of the User Guide will go through troubleshooting

More information

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2012 by TeachUcomp, Inc. All rights reserved. This publication,

More information

Data Analysis with Microsoft Excel 2003

Data Analysis with Microsoft Excel 2003 Data Analysis with Microsoft Excel 2003 Working with Lists: Microsoft Excel is an excellent tool to manage and manipulate lists. With the information you have in a list, you can sort and display data that

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

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

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy University of Wisconsin-Extension Cooperative Extension Madison, Wisconsin PD &E Program Development & Evaluation Using Excel for Analyzing Survey Questionnaires Jennifer Leahy G3658-14 Introduction You

More information

Creating a Database in Access

Creating a Database in Access Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store

More information

SAP BusinessObjects Financial Consolidation Web User Guide

SAP BusinessObjects Financial Consolidation Web User Guide SAP BusinessObjects Financial Consolidation Document Version: 10.0 Support Package 18 2016-02-19 SAP BusinessObjects Financial Consolidation Web User Guide Content 1 General user functions....12 1.1 To

More information

Excel Reports and Macros

Excel Reports and Macros Excel Reports and Macros Within Microsoft Excel it is possible to create a macro. This is a set of commands that Excel follows to automatically make certain changes to data in a spreadsheet. By adding

More information

Using Excel for Statistics Tips and Warnings

Using Excel for Statistics Tips and Warnings Using Excel for Statistics Tips and Warnings November 2000 University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 1.1 Data Entry and

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

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View Excel 03 What s New Introduction Microsoft Excel 03 has undergone some slight user interface (UI) enhancements while still keeping a similar look and feel to Microsoft Excel 00. In this self-help document,

More information

Data exploration with Microsoft Excel: analysing more than one variable

Data exploration with Microsoft Excel: analysing more than one variable Data exploration with Microsoft Excel: analysing more than one variable Contents 1 Introduction... 1 2 Comparing different groups or different variables... 2 3 Exploring the association between categorical

More information

Tutorial 7: Using Advanced Functions, Conditional Formatting and Filtering

Tutorial 7: Using Advanced Functions, Conditional Formatting and Filtering 1 Tutorial 7: Using Advanced Functions, Conditional Formatting and Filtering Objectives: Understand the use of structured references Evaluate single and multiple conditions using the IF function Evaluate

More information

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com M o s t U s e f u l E x c e l C o m m a n d s Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com Computer Training YOU Can Understand! Most Useful Excel Commands

More information

Concession FTP User Guide May 2011 Version 1.2

Concession FTP User Guide May 2011 Version 1.2 Concession FTP User Guide May 2011 Version 1.2 Concessions FTP User guide Page 1 of 41 Contents Objective... 3 FTP User Guide Microsoft Windows XP... 5 Anatomy of the Files... 9 Working on your Files....

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

Overview What is a PivotTable? Benefits

Overview What is a PivotTable? Benefits Overview What is a PivotTable? Benefits Create a PivotTable Select Row & Column labels & Values Filtering & Sorting Calculations Data Details Refresh Data Design options Create a PivotChart Slicers Charts

More information

Directions for the Well Allocation Deck Upload spreadsheet

Directions for the Well Allocation Deck Upload spreadsheet Directions for the Well Allocation Deck Upload spreadsheet OGSQL gives users the ability to import Well Allocation Deck information from a text file. The Well Allocation Deck Upload has 3 tabs that must

More information

WHAT S NEW IN MS EXCEL 2013

WHAT S NEW IN MS EXCEL 2013 Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues

More information

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0 ECDL European Computer Driving Licence Database Software BCS ITQ Level 1 Using Microsoft Access 2013 Syllabus Version 1.0 This training, which has been approved by BCS, includes exercise items intended

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