Excel Tips for Compensation Practitioners Weeks Text Formulae

Size: px
Start display at page:

Download "Excel Tips for Compensation Practitioners Weeks Text Formulae"

Transcription

1 Excel Tips for Compensation Practitioners Weeks Text Formulae Week 70 Using Left, Mid and Right Formulae When analysing compensation data, you generally extract data from the payroll, the HR system, electronic surveys or other sources. Or, if consulting, you get sent data by clients that they have extracted into Excel. Either way, the data is often not in the format that you need to do calculations, and this is where text functions in Excel come in very useful. There are a large number of text functions, which enable you to manipulate text data into a desired format. In this series, I will cover the following text functions, which are valuable when working with employee and salary data: Left, Mid, Right, Concatenate, Len, Trim, Lower, Proper, Upper, Dollar and Text. Let s start with the Left, Mid and Right functions. These are useful where data is sitting in one field / column, but needs to be split into different fields / columns in order to use it in calculations.. The Left function extracts characters from the left of the field, Mid from the middle of the field, and Right from the right of the field. For example, I have one client who uses grades B1 4, etc. up to G1-4. This client is broad banded, so the letter refers to the broad band, and the number to the type of job in the band, for example 1 is line management and 3 is specialist. Benefits are linked to the band, while pay scales are linked to the band and the job type.

2 What I need to do with this data is: a) extract the left character (the letter of the band) and then use this in a vlookup formula (Week 9) to determine various benefits, and b) extract the left and right characters (the band letter and the job type number), and then use this in a vlookup formula to determine the applicable pay scale. One way to do this is to use the Data, Text to Columns, Delimited, function outlined in Week 2. This would break the data up into 4 columns using space as a delimiter. The other way, which I will discuss here, is to use the Left and Right functions. Beginning with the Left function, for this example, in cell C2, click the fx icon, select Text for Category, then Left for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Left. Next to Text (see below), click on cell B2, where the first grade is. If you only want to extract one character on the left of the field, you can leave Num_chars blank or you can put in a 1. If you want to extract two or more characters from the left of the field, enter 2 or a higher number as appropriate. Click OK.

3 You will now have a B sitting in cell C2. Use the double click method to copy this down the worksheet, and your data will look like this.

4 To extract the job type number on the right, in cell D2 click the fx icon, select Text for Category, then Right for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Right. Next to Text (see below), click on cell B2, where the first grade is. If you only want to extract one character on the right of the field, you can leave Num_chars blank or you can put in a 1. If you want to extract two or more characters from the right of the field, enter 2 or a higher number as appropriate. Click OK. You will now have a 1 sitting in cell D2. Use the double click method to copy this down the worksheet, and your data will look like this. Of course, in this example, I have only put one type of each grade. In the actual data base, there would be thousands of records with a variety of grades.

5 Where the Right function is particularly valuable is when the field is of varying length. For example, I have another client who provides data with the job title and grade together in one field, like this: Sales Manager 07 HR Assistant 04 Assistant Brand Manager 06 The job title is of varying length and a varying number of words, and I need to extract the grade, which is always two digits at the end. In this case the Right function, taking two characters from the right, is the only way to extract the grade data. Going back to the Grade and Job Type data shown in the screen shot, the next step is to combine the band and job type into one field in order to use the data in a vlookup to find the appropriate pay scale. This can be done using the Concatenate function or by joining the fields with ampersands. The method to do this is outlined in Week 3, but I will go through it again here. To combine the fields, in cell E3, click the fx icon, select Text for Category, then Concatenate for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Concatenate. Next to Text1 (see below), click on cell C2, where the first band is. Next to Text2 click on cell D2 where the first job type is. Click OK.

6 You will now have B1 sitting in cell E2. Use the double click method to copy this down the worksheet, and your data will look like this.

7 Another way to join the fields together is to type in cell E2, =C2&D2, which is quicker and easier than using the Concatenate function. Alternatively, instead of doing the formula in stages, you could write the left and right function together in one formula, joining them with ampersands, as follows =LEFT(B2)&RIGHT(B2), which would be even quicker! The last function I will discuss in this column, Mid, is useful, where you need to extract the middle part of a field. To illustrate, one of the surveys I use, Remchannel, provides job description information in an Excel spreadsheet. In this spreadsheet the industry, discipline, sub-discipline and job code (a number between 1 and 1500) are shown in separate columns, but the salary extract data combines all this data into one job code in one column. A sample of the codes is shown below. The first job code appears here as GenFinAcct1414, but in the job description table it would be shown in separate columns as Generic, Finance, Accounting, From this data I therefore need to extract the 1 to 4 digit numeric job code at the end in order to use a Vlookup formula to pull in data from the job description file, and combine this with the salary extract data. The Right function cannot be used here, as the number of digits in the numeric code varies between 1 and 4. But the Mid function is ideal. To use the Mid function, in cell C2, click the fx icon, select Text for Category, then Mid for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Mid. Next to Text (see below), click on cell B2, where the first job code is. Next to Start-num, specify the character number from where you want to start the extract. In this case I want to extract from

8 the 12 th character onwards, as the first 11 characters represent the industry, discipline and subdiscipline. Next to Num_chars enter the number of characters that you wish to extract, in this case 4. Note that it does not matter if, in some cases, there are less characters than the number specified - Mid will still work it will extract up to 4 characters. Click OK. You will now have 1414 sitting in cell C2. Use the double click method to copy this down the worksheet, and your data will look like this.

9 Note that the job code numbers are still at this stage a text formula. To convert the fields from a formula to the result of the formula, select the whole of column C. Click Copy, click on the down arrow under or next to Paste, then select Paste Values. The data will now have green triangle markers to indicate that the numbers are stored as text. Select all the data, click on the arrow next to the exclamation mark next to the first cell, and select Convert to Number to convert the data to numbers. The data can now be used in a vlookup formula as it will be in a numeric form. Note that an alternative method in this case to extract the numeric job code would be to use Data, Text to Columns, Fixed Width (See Week 2), specifying a break after the 11 th character. Next week we will look at how to use the Len function in combination with the Left function with variable length fields, and where the Trim function can be very useful in rewards work.

10 Week 71 Using Len and Trim Formulae Last week, we looked at where the Left, Mid and Right functions could be valuable in rewards work. This week we will examine how the Len function can be used together with the Left function, when dealing with variable length fields, and the use of the Trim function. With the Left, Mid and Right functions, you specify how many characters you want to extract from the left, middle or right of a field. These work well if the field is a consistent length, or if the data you want to extract is always a consistent number of digits on the left or the right, as in the examples illustrated last week. However sometimes you have a situation where the field you want to extract is a variable length and a variable number of words. For example, as mentioned last week, the salary extract I get from one of my clients has job title and grade together in the same field. I need to extract job title into one column and grade into another column, as both of these fields are used in pivot tables and vlookups in the compensation analysis. This is where the Len function comes in handy. To illustrate, let s work with the following set of job titles and grades. This data cannot be separated into job title and grade by using Data, Text to Columns, with space as a delimiter, because the job title varies between one and three words, so the grade may end up in the second, third or fourth column. Data, Text to Columns, Fixed Width will also not work, as the length of the job title is variable. The grade can be extracted into a column using the Right function, taking the right two digits, as demonstrated last week. However this still leaves you with the problem of how to extract job title from the field. The answer lies with the Len function, which measures the number of characters in a field. So, to solve the problem, you first measure the number of characters in the job title-grade field as follows.

11 In cell C2, click the fx icon, select Text for Category, then Len for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Len. Next to Text (see below), click on cell B2, where the first job title-grade is. Click OK. You will now have the number of characters (including spaces) of the first job title-grade, 22, sitting in cell C2. Use the double click method to copy this down the worksheet, and your data will look like this. Now that you know the length of the field, you can extract the job title, as the job title will always be, from the left, the number of characters in the field less 3 (the space and 2 digit grade on the right of the job title).

12 To extract the job title, in cell D2, click the fx icon, select Text for Category, then Left for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Left. Next to Text (see below), click on cell B2, where the first job title-grade is. Next to Num_chars click on cell C2, where the length of the field is stored and then type in -3. You will now have the job title sitting in cell D2 minus the space and grade at the end of the field. Use the Right function to extract the grade into cell E2, and the double click method to copy both formulae down the worksheet, and your data will look like this, with job title and grade separated. You can also if you wish incorporate the Length and the Left formulae into one cell, in which case the formula for the job title field would look like this: =LEFT(B2,LEN(B2)-3).

13

14 Another text function which is useful for rewards work is the Trim function this trims excess spaces off words, either spaces at the end of a word, or where there is more than one space between words. This is very valuable when you are using job title in a vlookup formula, for example, to look up a survey job code, as in the following example. The first two job titles look identical, and they both have correct vlookup formulae to read the job code from the job title survey job code table. Yet, for the second job title, the vlookup formula is yielding a not applicable value. This is because there is a space at the end of Accounts Supervisor, and the formula can therefore not find an exact match in the survey job code table. The space is not visible, but causes the vlookup formula to fail. The same applies to the first Sales Administrator job title, and the first Creditors Clerk job title has an additional space between Creditors and Clerk. The Trim function is ideal to sort out this problem. To use the Trim function, insert a column after Job Title, and in cell C2, click the fx icon, select Text for Category, then Trim for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Trim. Next to Text (see below), click on cell B2, where the first job title is. Use the double click method to copy this down the worksheet.

15 You will now have the job titles without the additional spaces in column C. Change the first vlookup formula in column D from =VLOOKUP(B2,$F$2:$G$10,2,FALSE) to =VLOOKUP(C2,$F$2:$G$10,2,FALSE), so that the formula is reading the trimmed job titles rather than the original job titles. Copy this formula down the worksheet, and your data will look like this, with all the vlookup formulae working correctly. Next week we will look at how to use the Lower, Proper and Upper formulae, and how to use the Replace function to correct incorrect cases after converting to proper case.

16 Week 72 Using Lower, Proper and Upper functions Often text data extracted from the payroll or from salary surveys appears as upper case data. This is harder to read than proper case data, where just the first letter is capitalised, and also takes up much more room on the spreadsheet. On Word, it is very easy to convert data to another case - you just highlight the data, in Word 2007 click the Change Case icon, or in Word 2003 click Format, Change Case, and select the desired case. In Excel it is a little more fiddly, but can still be achieved without too much difficulty using text functions. Let s use the following data as an example this is from the Remchannel survey job description table discussed last week. The survey job title is shown in capital letters in the job description table to identify it as the most important field in the data set, but when I pull the data into a job comparison analysis, I would prefer it to be in proper case, as it takes up less room. To convert the data to proper case, insert a column next to the field you are wanting to convert, in this case, the data in column E. In cell F2, click the fx icon, select Text for Category, then Proper for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Proper. Next to Text (see below), click on cell E2, where the first job title is.

17 Your job title will now be converted to proper case. Use the double click method to copy this down the worksheet, and your data will look like this. Note that, when you insert a column, it always applies the same width as the column to its left. But the proper case job title data in column F takes up much less room than the upper case data in column E, so the column width could be considerably reduced. The only problem with the conversion is that CREDIT ANALYST II now shows up as Credit Analyst Ii rather than Credit Analyst II. To fix this and the remaining roman numerals, you first need to convert the proper case job title column from a formula to the result of a formula. To do this, select the whole column, click Copy, click on the down arrow under or next to Paste, then select Paste Values. You can now delete column E as column F is no longer linked to it.

18 Next, select the whole column of proper case job titles, hold down the control key and press H to bring up the replace function. Alternatively, in Excel 2003 click Edit, Replace, or in Excel 2007, click Home, Find & Select in the Editing Group, then Replace. In the Replace window, see below, next to Find what: type in Ii, and next to Replace with: type in II. Click on Replace All. Leave the Replace window open. Then, next to Find what:, see below, type in IIi (because you have partially fixed the Iii with the previous Replace), and next to Replace with: type in III. Click on Replace All. Leave the Replace window open. Lastly, next to Find what:, see below, type in Iv (put a space in front, so that you don t replace part of a job title as well, e.g. the iv in the word driver), and next to Replace with: type in IV also with a space in front. Click on Replace All.

19 Your data will now look like this, with all the roman numerals corrected. You can also use the replace function to replace other abbreviations, such as It with IT, Hr with HR, etc. Excel also two other case functions, Upper and Lower. These work in exactly the same way as Proper, and can be used to convert text to upper case, with all capitals, or to lower case, with no capitals. Another way to convert to a different case in Excel is to use the add in ASAP Utilities function, which is available as a download from the web site To use this function, first install ASAP Utilities. Next select all the data to be converted to a different case. Click on

20 the ASAP Utilities menu, select Text, then option 7 Start Each Word With Upper Case see below. Note that the menu looks a little different in Excel 2003, but the ASAP Utilities menu options and numbering are the same. This will convert all the text to proper case without having to insert columns and apply formulae. It operates in a similar way to the Word Change Case function, and is therefore much quicker to use. Next week we will look at how to use the Dollar and Text functions when doing mail merges, and their value in Excel headings.

21 Week 73 Using Dollar and Text functions This week we will look at the Dollar and Text functions, which convert a number to a specific text format, and are very valuable when doing a mail merge from Excel to Word. They can also be used to create headings in Excel based on data in tables. When doing a mail merge, you first need to set up your Excel database with the merge data. Let s say that you have the following set of data which you want to use in a mail merge letter to your Sales Representatives informing them of their salary, commission and travel expense claims paid for the last month. Because you have formatted your data to no decimal places, it looks as though there are no decimals in the data. However when you merge it to Word, any decimals in the data will show up in the mail merge see the example below. These decimals are sometimes there because formulae have been used to calculate the pay outs, or because data has been converted from annual to monthly or monthly to weekly etc.

22 You can use either the dollar or text function to get around this problem. As a first step, copy the Monthly Salary, Commission and Travel Claims headings to the right, and set the decimal places for these columns to 2, so that you can see what data will go into the mail merge. Next, in cell F2, where the new Monthly Salary column is, click the fx icon, select Text for Category, then Dollar for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Dollar. Next to Text (see below), click on cell C2, where the original monthly salary is. You can leave Decimals blank, if you are happy with the default of 2 decimal places, or change this to no decimal places if you want the data rounded to the nearest dollar or other currency.

23 What this formula does is convert the numeric field to a text field using whatever country currency is set up on your computer. In my case I am based in South Africa, so the Dollar function converts the numeric field to a rand currency. If you are based in the United States, it will convert to dollars, in Europe to euros etc. If you repeat the dollar formula in the new Commission and Travel Claims columns, and copy the formula down the spreadsheet, your data will look like this, or a different currency as applicable. Now, when you do the mail merge, use the data in columns F to H instead of the data in columns C to E as your merge fields. Your mail merge will now look like this.

24 The Text function works in a similar way to Dollar, and can also be used to format the data for a mail merge. The Text function is more complicated to write, but has the advantage that it enables you to display data in any format desired. Working with the same set of data, instead of using the Dollar function in columns F to H, you could use the Text function. To do so, in cell F2 click the fx icon, select Text for Category, then Text for function. Or alternatively, in Excel 2007, click on the Formulas Tab, select Text, click on the down arrow beneath Text and select Text. I know this sounds odd, but Text is one of the functions available under Text! Next to Value (see below), click on cell C2, where the original monthly salary is. Format_text, you need to specify how you want the data to be displayed. Next to If you want the data displayed as currency, you specify which currency sign you want in front and how many decimal places you require. For the formatting, you can use any format that is available under the Format cells dialog box, including the Custom free field option, so you could format the data as a percentage, a date or time, a telephone number, zip code or any other format desired. If for example you wanted the data as a telephone number you could format it as (000) If you wanted it as a date, you could format it as mm-dd-yyyy (or look at Week 6 to find lots of other date formatting options). Once you have chosen the desired format, click OK. In this example, you could use the same formula for the commission and travel claims fields, and copy this down the worksheet. Your data would then look like this.

25 The advantage of using Text over Dollar is the flexibility you have in formatting. For example, you might be operating across several countries, and need to do mail merge in different currencies for different countries. You would then not want to use the default currency set up on your computer. Where these functions are also useful is when you want to create headings based on data in a table. Working with the same set of data, let s say that you have region and month data in the first columns, and that the data is sent to you as a separate spreadsheet per region per month. Each month you need to print the sheets and give them to the sales manager to sign off. The first sheet of data now looks like this.

26 What you want to do is to add a heading to each sheet before it is printed. You could type out the heading manually for each sheet, but much easier than this is to set up a formula using the Text function and ampersands, to automatically create a heading for each sheet based on the region and month data in cells A5 and B5. To do this, in cell A2, type in the following formula: ="Sales Commission and Travel Claims Data for "&A5&" - "&TEXT(B5,"mmmm yyyy") What this formula does is first put in some text, then the region that is sitting in A5, then a dash with spaces around it, then the date that is sitting in cell B5 formatted to show as the full month and a 4 digit year. Your worksheet will now look like this. This formula can be copied into all the worksheets in the file and it will reflect the appropriate heading for each region and date in each sheet. This is a very efficient way to create headings. Also, if you update the sheet with new data each month, the heading will automatically pick up the new date. Another area where I use the Text function is where I need to have actual monetary values in a spreadsheet for calculation purposes, for example, company turnover, but I wish to display the data as $m. In this case I would put the actual monetary value into one cell, say A1, and in B1 I would write the formula =TEXT(A1/ ,"$0")&"m". This formula says divide the value in cell A1 by a million, then format it to no decimal places with a dollar sign in front, and put an m at the end.

27 If cell A1 had the value , cell B1 would show as $560m, which is easier data to assimilate. This concludes the series on text functions. Next week we will start a new series looking at some of the mathematical and statistical functions not yet covered in Excel.

Excel Tips for Compensation Practitioners Month 1

Excel Tips for Compensation Practitioners Month 1 Excel Tips for Compensation Practitioners Month 1 Introduction This is the first of what will be a weekly column with Excel tips for Compensation Practitioners. These tips will cover functions in Excel

More information

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection Excel Tips for Compensation Practitioners Weeks 29-38 Data Validation and Protection Week 29 Data Validation and Protection One of the essential roles we need to perform as compensation practitioners is

More information

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Week 9 Using lookup functions Microsoft Excel is essentially a spreadsheet tool, while Microsoft Access is a database tool.

More information

Excel Tips for Compensation Practitioners Weeks Pivot Tables

Excel Tips for Compensation Practitioners Weeks Pivot Tables Excel Tips for Compensation Practitioners Weeks 23-28 Pivot Tables Week 23 Creating a Pivot Table Pivot tables are one of the most amazing and powerful tools in Excel, but many users do not know how to

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

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

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

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

Using Microsoft Excel

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

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to only certain types of people while others have

More information

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION EXCEL 2016 3Advanced Functions for Text and Analysis In this chapter, you will learn new functions that give you greater ability for analysis and decision making. They include functions that either sum

More information

Excel Level 1

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

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

More information

Pivot Tables, Lookup Tables and Scenarios

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

More information

E D T 3 2 E D T 3. Slide 1

E D T 3 2 E D T 3. Slide 1 Slide Spreadsheets Using Microsoft xcel Reminder: We had covered spreadsheets very briefly when we discussed the different types of software in a previous presentation. Spreadsheets are effective tools

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

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

More information

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT.

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT. Instructional Center for Educational Technologies EXCEL 2010 BASICS Things to Know Before You Start The cursor in Excel looks like a plus sign. When you click in a cell, the column and row headings will

More information

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES Chapter 1 : Examples of commonly used formulas - Office Support A collection of useful Excel formulas for sums and counts, dates and times, text manipularion, conditional formatting, percentages, Excel

More information

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

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

Functions in Excel. Structure of a function: Basic Mathematical Functions. Arithmetic operators: Comparison Operators:

Functions in Excel. Structure of a function: Basic Mathematical Functions. Arithmetic operators: Comparison Operators: Page1 Functions in Excel Formulas (functions) are equations that perform calculations on values in your spreadsheet. A formula always starts with an equal sign (=). Example: =5+2*7 This formula multiples

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

ENTERING DATA & FORMULAS...

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

More information

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Goal in video # 25: Learn about how to use the Get & Transform

More information

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

My Top 5 Formulas OutofhoursAdmin

My Top 5 Formulas OutofhoursAdmin CONTENTS INTRODUCTION... 2 MS OFFICE... 3 Which Version of Microsoft Office Do I Have?... 4 How To Customise Your Recent Files List... 5 How to recover an unsaved file in MS Office 2010... 7 TOP 5 FORMULAS...

More information

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

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

More information

Excel Template Instructions for the Glo-Brite Payroll Project (Using Excel 2010 or 2013)

Excel Template Instructions for the Glo-Brite Payroll Project (Using Excel 2010 or 2013) Excel Template Instructions for the Glo-Brite Payroll Project (Using Excel 2010 or 2013) T APPENDIX B he Excel template for the Payroll Project is an electronic version of the books of account and payroll

More information

Excel Macros, Links and Other Good Stuff

Excel Macros, Links and Other Good Stuff Excel Macros, Links and Other Good Stuff COPYRIGHT Copyright 2001 by EZ-REF Courseware, Laguna Beach, CA http://www.ezref.com/ All rights reserved. This publication, including the student manual, instructor's

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

More information

Intermediate Microsoft Excel 2008

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

More information

Excel Formulas 2018 Cindy Kredo Page 1 of 23

Excel Formulas 2018 Cindy Kredo Page 1 of 23 Excel file: Excel_Formulas_BeyondIntro_Data.xlsx Lab One: Sumif, AverageIf and Countif Goal: On the Demographics tab add formulas in Cells C32, D32 and E32 using the above functions. Use the cross-hair

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Excel Files The files that Excel stores spreadsheets in are called workbooks. A workbook is made up of individual worksheets. Each sheet is identified by a sheet name which appears

More information

Table of Contents. Part I Introduction. Part II FSM Ribbon. Part III FSM Context Menu. Part IV Trial Balance. Part V Building a report

Table of Contents. Part I Introduction. Part II FSM Ribbon. Part III FSM Context Menu. Part IV Trial Balance. Part V Building a report Contents I Table of Contents Part I Introduction 1 1 Welcome... 2 2 Benefits... of using 3 3 System... Requirements 4 4 Uninstalling... 4 Part II FSM Ribbon 5 Part III FSM Context Menu 5 Part IV Trial

More information

INFORMATION SHEET 24002/1: AN EXCEL PRIMER

INFORMATION SHEET 24002/1: AN EXCEL PRIMER INFORMATION SHEET 24002/1: AN EXCEL PRIMER How to use this document This guide to the basics of Microsoft Excel is intended for those people who use the program, but need or wish to know more than the

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Table of Contents The Excel Window... 2 The Formula Bar... 3 Workbook View Buttons... 3 Moving in a Spreadsheet... 3 Entering Data... 3 Creating and Renaming Worksheets... 4 Opening

More information

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

This lesson is part 5 of 5 in a series. You can go to Invoice, Part 1: Free Shipping if you'd like to start from the beginning.

This lesson is part 5 of 5 in a series. You can go to Invoice, Part 1: Free Shipping if you'd like to start from the beginning. Excel Formulas Invoice, Part 5: Data Validation "Oh, hey. Um we noticed an issue with that new VLOOKUP function you added for the shipping options. If we don't type the exact name of the shipping option,

More information

Skill Set 5. Outlines and Complex Functions

Skill Set 5. Outlines and Complex Functions Spreadsheet Software OCR Level 3 ITQ Skill Set 5 Outlines and Complex Functions By the end of this Skill Set you should be able to: Create an Outline Work with an Outline Create Automatic Subtotals Use

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

MODULE III: NAVIGATING AND FORMULAS

MODULE III: NAVIGATING AND FORMULAS MODULE III: NAVIGATING AND FORMULAS Copyright 2012, National Seminars Training Navigating and Formulas Using Grouped Worksheets When multiple worksheets are selected, the worksheets are grouped. If you

More information

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

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

More information

Relativity. User s Guide. Contents are the exclusive property of Municipal Software, Inc. Copyright All Rights Reserved.

Relativity. User s Guide. Contents are the exclusive property of Municipal Software, Inc. Copyright All Rights Reserved. Relativity User s Guide Contents are the exclusive property of Municipal Software, Inc. Copyright 2006. All Rights Reserved. Municipal Software, Inc. 1850 W. Winchester, Ste 209 Libertyville, IL 60048

More information

Excel Tables and Pivot Tables

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

More information

Excel for Auditors. by Bill Jelen and Dwayne K. Dowell. Holy Macro! Books

Excel for Auditors. by Bill Jelen and Dwayne K. Dowell. Holy Macro! Books Excel for Auditors by Bill Jelen and Dwayne K. Dowell Holy Macro! Books Excel for Auditors 2007 Tickling Keys All rights reserved. No part of this book may be reproduced or transmitted in any form or by

More information

Database Concepts Using Microsoft Access

Database Concepts Using Microsoft Access lab Database Concepts Using Microsoft Access 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

EXCEL BASICS: PROJECTS

EXCEL BASICS: PROJECTS EXCEL BASICS: PROJECTS In this class, you will be practicing with three basic Excel worksheets to learn a variety of foundational skills necessary for more advanced projects. This class covers: Three Project

More information

Applied Systems Client Network SEMINAR HANDOUT. Excel 2007: Level 2

Applied Systems Client Network SEMINAR HANDOUT. Excel 2007: Level 2 Applied Systems Client Network SEMINAR HANDOUT Excel 2007: Level 2 Prepared for ASCnet Applied Systems Client Network 801 Douglas Avenue #205 Altamonte Springs, FL 32714 Phone: 407-869-0404 Fax: 407-869-0418

More information

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks...

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks... Version 3 Updated November 29, 2007 Contents Contents... 3 Part I: Background Information... 1 About This Handbook... 2 Excel Terminology... 3 Part II:... 4 Advanced Excel Tasks... 4 Export Data from

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

Objective: Class Activities

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

More information

Checklist. ORB Education Quality Teaching Resources. ORB Education Visit for the full, editable versions.

Checklist. ORB Education Quality Teaching Resources. ORB Education Visit   for the full, editable versions. Checklist 1. Data in our Lives 2. Representing Data 3. Working with Data 4. Introducing Spreadsheets 5. Basic Excel Skills 6. Google Sheets 7. Sorting and Filtering 8. Formulas 9. Plots and Trendlines

More information

Using Excel for a Gradebook: Advanced Gradebook Formulas

Using Excel for a Gradebook: Advanced Gradebook Formulas Using Excel for a Gradebook: Advanced Gradebook Formulas Objective 1: Review basic formula concepts. Review Basic Formula Concepts Entering a formula by hand: Always start with an equal sign, and click

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

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

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

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

MICROSOFT EXCEL 2000 LEVEL 3

MICROSOFT EXCEL 2000 LEVEL 3 MICROSOFT EXCEL 2000 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using the IF Function... 8 Using Nested IF Functions... 10 Using an AND

More information

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid= Copyright 2010 by Curtis Frye

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid= Copyright 2010 by Curtis Frye Sample Chapters Copyright 2010 by Curtis Frye All rights reserved. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=191751 Chapter at a Glance Analyze data dynamically

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks In Office 2007, the OFFICE BUTTON is the symbol at the top left of the screen. 1 Enter Fractions That Will Display And Calculate Properly a. Type

More information

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions Objectives Create and manipulate a table Deleting duplicate records Delete sheets in a workbook Add calculated columns

More information

EXCEL 2010 BASICS JOUR 772 & 472 / Ira Chinoy

EXCEL 2010 BASICS JOUR 772 & 472 / Ira Chinoy EXCEL 2010 BASICS JOUR 772 & 472 / Ira Chinoy Virus check and backups: Remember that if you are receiving a file from an external source a government agency or some other source, for example you will want

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

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

More information

HOW TO USE THE EXPORT FEATURE IN LCL

HOW TO USE THE EXPORT FEATURE IN LCL HOW TO USE THE EXPORT FEATURE IN LCL In LCL go to the Go To menu and select Export. Select the items that you would like to have exported to the file. To select them you will click the item in the left

More information

Business Process Procedures

Business Process Procedures Business Process Procedures 14.40 MICROSOFT EXCEL TIPS Overview These procedures document some helpful hints and tricks while using Microsoft Excel. Key Points This document will explore the following:

More information

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee Financial Reporting Using Microsoft Excel Presented By: Jim Lee Table of Contents Financial Reporting Overview... 4 Reporting Periods... 4 Microsoft Excel... 4 SedonaOffice General Ledger Structure...

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

How to Set up a Budget Advanced Excel Part B

How to Set up a Budget Advanced Excel Part B How to Set up a Budget Advanced Excel Part B A budget is probably the most important spreadsheet you can create. A good budget will keep you focused on your ultimate financial goal and help you avoid spending

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

Creating a Directory with a Mail Merge from an Excel Document

Creating a Directory with a Mail Merge from an Excel Document Creating a Directory with a Mail Merge from an Excel Document When you run a mail merge, Word pulls names, addresses, and other information directly from your Excel spreadsheet into the documents you re

More information

Excel Formulas and Functions

Excel Formulas and Functions Excel Formulas and Functions Formulas Relative cell references Absolute cell references Mixed cell references Naming a cell or range Naming constants Dates and times Natural-language formulas Functions

More information

Key concepts through Excel Basic videos 01 to 25

Key concepts through Excel Basic videos 01 to 25 Key concepts through Excel Basic videos 01 to 25 1) Row and Colum make up Cell 2) All Cells = Worksheet = Sheet 3) Name of Sheet is in Sheet Tab 4) All Worksheets = Workbook File 5) Default Alignment In

More information

ABOUT PIVOTTABLES TABLE OF CONTENTS

ABOUT PIVOTTABLES TABLE OF CONTENTS University of Southern California Academic Information Services Excel 2007 - PivotTables ABOUT PIVOTTABLES PivotTables provide an excellent means of analyzing data stored in database format by rearranging

More information

Get Data from External Sources Activities

Get Data from External Sources Activities PMI Online Education Get Data from External Sources Activities Microcomputer Applications Table of Contents Objective 1: Import Data into Excel... 3 Importing Data from a Word Table... 3 Importing Data

More information

Sort, Filter, Pivot Table

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

More information

PCGENESIS PERSONNEL SYSTEM OPERATIONS GUIDE

PCGENESIS PERSONNEL SYSTEM OPERATIONS GUIDE PCGENESIS PERSONNEL SYSTEM OPERATIONS GUIDE 7/13/2015 Section C: Employee Contract File Export Processing, V1.4 Revision History Date Version Description Author 7/13/2015 1.4 15.02.00 Update the Personnel

More information

Excel Basic: Create Formulas

Excel Basic: Create Formulas Better Technology, Onsite and Personal Connecting NIOGA s Communities www.btopexpress.org www.nioga.org [Type Excel Basic: Create Formulas Overview: Let Excel do your math for you! After an introduction

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

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

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

2015 Vanderbilt University

2015 Vanderbilt University Excel Supplement 2015 Vanderbilt University Introduction This guide describes how to perform some basic data manipulation tasks in Microsoft Excel. Excel is spreadsheet software that is used to store information

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

More information

Creating & Using Tables

Creating & Using Tables Creating & Using Tables in Microsoft Word 2000 Created by and for: Internet and Technology Training Services Office of Information Technology What is a Table? A table is a structure that is divided into

More information

Making an entry into the CIS Payments workbook

Making an entry into the CIS Payments workbook Making an entry into the CIS Payments workbook By now you should have carried out the CIS Payments workbook Setup. If you have not done so you will need to do this before you can proceed. When you have

More information

Tips & Tricks: MS Excel

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

More information

1. Introduction to Microsoft Excel

1. Introduction to Microsoft Excel 1. Introduction to Microsoft Excel A spreadsheet is an online version of an accountant's worksheet, which can automatically do most of the calculating for you. You can do budgets, analyze data, or generate

More information

Spreadsheet Concepts Using Microsoft Excel

Spreadsheet Concepts Using Microsoft Excel Spreadsheet Concepts Using Microsoft Excel lab 5 Objectives: Upon successful completion of Lab 5, you will be able to Create and edit a simple spreadsheet document Describe the advantage of using formulas

More information

Introduction to Excel

Introduction to Excel Office Button, Tabs and Ribbons Office Button The File menu selection located in the upper left corner in previous versions of Excel has been replaced with the Office Button in Excel 2007. Clicking on

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

1. Two types of sheets used in a workbook- chart sheets and worksheets

1. Two types of sheets used in a workbook- chart sheets and worksheets Quick Check Answers Session 1.1 1. Two types of sheets used in a workbook- chart sheets and worksheets 2. Identify the active cell- The active cell is surrounded by a thick border and its cell reference

More information

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

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

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED EXCEL ADVANCED Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:...

More information

CIPHR Report Designer

CIPHR Report Designer CIPHR Report Designer [version 7.0.1] CIPHR Report Designer 1 October 2013 Table of Contents Introduction... 3 Example 1: Listing report using a Subset... 7 Example 2: Report in a specific Order (Sorting)...

More information

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

Excel 2013 Workshop. Prepared by

Excel 2013 Workshop. Prepared by Excel 2013 Workshop Prepared by Joan Weeks Computer Labs Manager & Madeline Davis Computer Labs Assistant Department of Library and Information Science June 2014 Excel 2013: Fundamentals Course Description

More information

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0 ECDL Advanced European Computer Driving Licence Advanced Spreadsheet Software BCS ITQ Level 3 Using Microsoft Excel 2010 Syllabus Version 2.0 This training, which has been approved by BCS, The Chartered

More information

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

More information

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

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

More information

Microsoft Office Excel

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

More information

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Arizona Board of Regents, 2014 THE UNIVERSITY OF ARIZONA created 02.07.2014 v.1.00 For information and permission to use our

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2010 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information