Excel: Introduction to Formulas



Similar documents
Creating Basic Excel Formulas

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

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

Microsoft Excel 2010 Part 3: Advanced Excel

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

ECDL / ICDL Spreadsheets Syllabus Version 5.0

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

Microsoft Excel Tips & Tricks

Q&As: Microsoft Excel 2013: Chapter 2

ROUND(cell or formula, 2)

The Center for Teaching, Learning, & Technology

SOME EXCEL FORMULAS AND FUNCTIONS

2: Formulas and Functions

SOAL-SOAL MICROSOFT EXCEL 1. The box on the chart that contains the name of each individual record is called the. A. cell B. title C. axis D.

Formatting Formatting Tables

Microsoft Excel 2010 Tutorial

Microsoft Excel Understanding the Basics

Move between open workbooks. Display the print menu. Select whole spreadsheet. Microsoft Excel Keyboard Keys. General

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

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

Microsoft Excel Basics

Using VLOOKUP to Combine Data in Microsoft Excel

MICROSOFT EXCEL FORMULAS

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

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts

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

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

Lab 11: Budgeting with Excel

A User Manual for Benefit Cost Analysis Using Microsoft Excel

Introduction to Microsoft Excel 1 Part I

This activity will guide you to create formulas and use some of the built-in math functions in EXCEL.

Excel 2003 Tutorial I

Getting Started with Excel Table of Contents

Excel 2007: Basics Learning Guide

Basic Microsoft Excel 2007

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

Data Analysis with Microsoft Excel 2003

Excel 2007 A Beginners Guide

Excel for Mac Text Functions

Excel 2007 Tutorials - Video File Attributes

Performing Simple Calculations Using the Status Bar

Name: Class: Date: 9. The compiler ignores all comments they are there strictly for the convenience of anyone reading the program.

Excel 2007 Basic knowledge

Excel 2003 A Beginners Guide

ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools

What is Microsoft Excel?

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

As in the example above, a Budget created on the computer typically has:

Basic Excel Handbook

Advanced Excel Charts : Tables : Pivots : Macros

Excel 2003 Tutorials - Video File Attributes

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.

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

Formulas & Functions in Microsoft Excel

Introduction to Microsoft Excel 2007/2010

Seagate Crystal Reports Designer

Advanced Microsoft Excel 2010

Excel Database Management Microsoft Excel 2003

Excel Intermediate Session 2: Charts and Tables

Excel Formatting: Best Practices in Financial Models

Intro to Excel spreadsheets

Microsoft Excel 2007 Mini Skills Overview of Tables

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

Advanced Excel 10/20/2011 1

EXCEL FINANCIAL USES

Computer Training Centre University College Cork. Excel 2013 Level 1

Introduction to Excel

Working with Tables: How to use tables in OpenOffice.org Writer

Tutorial Microsoft Office Excel 2003

Understanding Start-Up Costs

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

Excel 2010: Create your first spreadsheet

Crystal Reports Designer

I PUC - Computer Science. Practical s Syllabus. Contents

Adding Comments in Microsoft Excel 2003

PA Payroll Exercise for Intermediate Excel

How To Use Excel With A Calculator

Microsoft Excel Introduction to Microsoft Excel 2007

Everyday Excel Stuff Excel Day Planner Organizer Reference Guide

Chapter 9 Creating Reports in Excel

Creating a Gradebook in Excel

3.GETTING STARTED WITH ORACLE8i

CALCULATIONS & STATISTICS

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

How to Make the Most of Excel Spreadsheets

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Excel 2003: Ringtones Task

Formulas, Functions and Charts

Commonly Used Excel Formulas

ACADEMIC TECHNOLOGY SUPPORT

Essential Skills for Spreadsheets Microsoft Excel TR Leger Adult Literacy and Employment Preparation Program

Excel I Sorting and filtering Revised February 2013

How to Concatenate Cells in Microsoft Access

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Create a report with formatting, headings, page numbers and table of contents

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Top 10 Excel Questions WHY A TECHTORIAL?

How to Excel with CUFS Part 2 Excel 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

Probability Distributions

Transcription:

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 SUM... 5 ROUND... 5 COUNT... 6 IF... 7 Anchoring rows/columns with $ sign... 7 Combining Formulas From Multiple worksheets... 8 Practice Set... 9

Formulas Arithmetic & Comparison Operators Arithmetic & Comparison Operators Operator Meaning Example Result + Addition A1+B1 Numeric Value Subtraction or Negative A1 B1 * Multiplication A1*B1 / Division A1/B1 Numeric Value Numeric Value Numeric Value = Equal to A1=B1 Logical Value (TRUE or FALSE) > Greater than A1>B1 Logical Value (TRUE or FALSE) < Less than A1<B1 Logical Value (TRUE or FALSE) >= Greater than or equal to A1>=B1 Logical Value (TRUE or FALSE) <= Less than or equal to A1<=B1 Logical Value (TRUE or FALSE) <> Not equal to A1<>B1 Logical Value (TRUE or FALSE) Text Concatenation Operators Text Concatenation Operators Operator Meaning Example Result & Connects, or concatenates, multiple values to produce one continuous The text value Want to combine the values in columns A C. I added a space, via the space bar, so the words would have a space between them. shows what the formula in D1 looks like. You can see the value in D1 has the two words combined nicely. Operator Precedence If you combine several operators in a single formula, Excel performs the operations in a specific order, described below. If operators within the same formula share the same precedence Excel then defaults 2

from left to right. The user may change the order by which calculations are performed by using parentheses. The following is an example of why the precedence needs to be understood and why it is important: Formula Result Calculation =5+2*3 11 (2 times 3) plus 5 =(5+2)*3 21 (5 plus 2) times 3 Operator Precedence Operator Meaning * and / Multiplication and Division + and Addition and Subtraction & = Equal to Text Concatenation <> Not equal to <= Less than or equal to >= Greater than or equal to UPPER, LOWER, PROPER, and TRIM These formulas all work with text. After using one of these functions it is good practice to paste special\values so that they will remain in their desired formatting. 1 2 3 3

UPPER, LOWER, PROPER, and TRIM Formula =UPPER =LOWER =PROPER =TRIM Converts all text to upper case Converts all text to lower case Description Capitalizes the first letter in a text string and any other letters in text that follow any character other than a letter, i.e. a space. Converts all other letters to lowercase Removes all blank, unnecessary spaces at the start and end of a string including extra spaces, tabs, and other characters that don t print. & (Ampersand) The & connects, or concatenates, multiple values to produce one continuous text value. After using this function it is good practice to paste special\values so that they will remain in their desired formatting. The finished product I want is to have Shasta County in one cell which I can accomplish with the & function. By combining the values in columns A and B I have accomplished my desired task, but quite literally. Note there is no space between the two words in cell C1. By adding a column to the right of column A and pressing the space bar once, creating a single space, and modifying my formula to now include columns A C, I now have a more readable result. Notice there is no space between the two words. Note if your data consists of several rows you would need to copy the blank space in B1 all the way to the last row. 4

SUM The SUM function is the singularly most used function within Excel. It is used to total values in your worksheets. These values may be continuous, noncontinuous, from different worksheets, etc, or a variety thereof. The syntax is =SUM(number1,[number2],[...]) An example of the formula is =SUM(A1:A4). The English translation is add up all of the values found in the range of between A1 and A4, inclusive, and displays the result. Add up the values in this range And place the result here Notice that I have one extra line within my formula. I do that on all of my formulas as a best practice. If I need to add any additional rows, by doing so above the blank row, I am ensured my formula will properly be modified automatically. There are many variations to this formula, this is just one example. ROUND The ROUND function rounds a number to a specified number of digits. This should not be confused with formatting to a specified decimal places. The syntax is =ROUND(number, num_digits) Expanding our previous SUM formula from above, the formula is =ROUND(SUM(A1:A4),2). The English translation is add up all of the values found in the range of between A1 and A4, inclusive, round the result to two decimal places, and display the result. It is important not to confuse rounding to a specific number of decimals and formatting your cell to a specific number of decimals. For example, if cell A5 below contains 18.44978. If we were to format the cell to two decimal places, 18.45 will be displayed. However, Excel still sees it as 18.44978 (Before picture). If I 5

want Excel to see, and use in subsequent calculations, 18.45 I would need to have the following rounding formula in A5: =ROUND(SUM(A1:A4),2) (After picture) Without ROUND Formula With ROUND Formula COUNT The COUNT function counts the number of cells that contain numbers and counts numbers within the list of arguments. The syntax is COUNT( value1, value2, ) Continuing on with our SUM formula from above, let s not only add up the values of the range A1:A4, but let s count how many numbers are included within the range, i.e. how many cells within the range has a value in it. The formula is =COUNT(A1:A4). The English translation is count how many cells within the range has a value in it and display the result. Notice that the range is exactly the same as our SUM, A1:A4, which includes four rows. The value returned in cell A7 is three, because only three of the four rows have values in them. If you are trying to count text, use the COUNTA formula which counts the non blank cells. 6

IF The formula makes a statement/question, if the answer is true then one response is obtained. If the answer if false, then another answer is obtained. The syntax is =IF(logical_test,value_if_true,value_if_false) Continuing on with our SUM formula from above, let s add some verbage to emphasize whether the result is greater or less than twenty. The formula is =if(a5<20, Amount is less than twenty, Amount is more than twenty ). The English translation is if the value found in A5 is less than twenty THEN display the comment Amount is less than twenty ELSE display the comment Amount is more than twenty. Anchoring Rows and Columns With $ Sign As formulas are copied either the column reference increases or the row number depending on the direction of the copy. If copying to the right through the spreadsheet, the column reference will increase; if copying down through the spreadsheet, the row references will increase. In order to overrule the automatic increment, place a dollar sign in front of the reference that you don t want to change, the column, row, or both. Anchoring Rows and Columns With $ Sign Source Formula =SUM(A1:A4) Action Copy formula one cell to the right Destination Formula =SUM(B1:B4) Effect Column references increased from A to B and A to B =SUM($A1:A4) Copy formula one cell to the right =SUM($A1:B4) Column references A stayed constant at A and increased from A to B =SUM(A1:A4) Copy formula one cell down =SUM(A2:A5) Row references increased from 1 to 2 and 4 to 5 7

=SUM(A$1:A4) Copy formula one cell down =SUM(A$1:A5) Row references 1 stayed constant at 1 and increased from 2 to 5 =SUM($A$1:$A$4) Copy formula anywhere within the spreadsheet =SUM($A$1:$A$4) Neither column nor row references changed Combining Formulas Between Multiple Worksheets Data can be pulled from other worksheets and utilized on others. This function can be used for both numerical and text data. The formulas can combine one to many worksheets are ranges. For Example, this is extremely handy when one worksheet acts as a summary and recaps information from the detail worksheets. Our example below recaps sales on one sheet, while the monthly detail in maintained on other sheets. Note the worksheet names of Summary, Jan, Feb, & Mar. We are working within the Summary worksheet, denoted by the tab color. The curser is in cell D6 which receives its information from the January worksheet. 8

PRACTICE SET Using the data on the staff mileage data tab, perform the following steps: 1. Insert rows and add the header. Change the font size to 12. Make bold and italize. 2. Bold, underline, word wrap, and center headers. 3. Sort employee data lines, skipping the budget row by employee name and date 4. Using the PROPER command clean up the employees names. 5. Using the SUM formula add totals to the adopted, revised, and actual columns. 6. Add the top and bottom border to the sums. 7. Add REMAINING BALANCE text and do a basic subtraction formula calculating the difference between the revised budget total and the actual to date. 8. Add NUMBER OF TRANSACTIONS TO DATE caption. Using the COUNT formula count the number of transactions. 9. Add a new column entitled Remaining Balance (Revised vs Actual). Using basic subtraction calculate the remaining balance on a per line basis. 10. Your final product should look like this: 9