My Top 5 Formulas OutofhoursAdmin

Size: px
Start display at page:

Download "My Top 5 Formulas OutofhoursAdmin"

Transcription

1

2 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 TOP 5 FORMULAS... 9 How To Show Formulas VLookup Concatenate SumIf and SumIfs Left, Right and Mid Trim Bonus Formula: Upper, Lower and Proper THANK YOU Contents Page 1

3 INTRODUCTION Hello and thanks for downloading my ebook! First off a little bit about myself originally from Leicestershire, UK I moved to Ireland back in 2007 with my other half and a suitcase! After a few years in Ireland, not to mention the 18 years in the UK, of working in a variety of administrative roles for other people, I decided to take the plunge and start my own business in And that s when OutofhoursAdmin was born; a virtual assistant service providing remote admin support to businesses throughout Ireland and the UK. After receiving numerous questions about MS Office from clients, I decided to share my answers in the form of tutorials which I post regularly on my blog. This ebook is a list of my top 5 formulas (+ a bonus one at the end!) that I think all Excel users should know. Each formula is broken down into step by step tutorials with examples of when to use them. I hope you will find them useful. If you want an extra pair of hands to help with any of your administration, get in touch by ing me at sharon@outofhoursadmin.ie or you can connect with me on Facebook, LinkedIn or subscribe to my YouTube channel. Thanks, Sharon INTRODUCTION Page 2

4 MS OFFICE MS OFFICE Page 3

5 WHICH VERSION OF MICROSOFT OFFICE DO I HAVE? I m often asked how to do things in Excel or Word by clients. My first question is always what version of Office do you use? to which the response is usually I have no idea, where does it tell me that?. So this short guide is to show you how to find it The following screen shots are all from using Word 2010, however the same would also apply if you were in Excel or PowerPoint. Click on File in the top left corner of the ribbon, then click Help, and the version is displayed over on the right Alternatively, you can click the search icon on your desktop toolbar & type Microsoft into the search bar, which should then list all Microsoft programs along with the version that you re using. MS OFFICE Which Version of Microsoft Office Do I Have? Page 4

6 HOW TO CUSTOMISE YOUR RECENT FILES LIST It s always handy to have your most recent documents displayed at the top of the list when you click into Recent Documents, however you can customise this list so it contains as many documents as you wish. The following is using Word 2010, however it s also the same process in Excel and PowerPoint. Click on File, select Options MS OFFICE How To Customise Your Recent Files List Page 5

7 Click on Advanced from the menu on the left, scroll down to the Display section, change the number of the Recent Documents and click OK That s it! MS OFFICE How To Customise Your Recent Files List Page 6

8 HOW TO RECOVER AN UNSAVED FILE IN MS OFFICE 2010 This has happened to me a few times you ve spent a while working on a document in MS Office, go to close it & it asks if you want to save changes, and for some unknown reason you press No! Panic! What do you do? Click File then Info and then click on the drop down arrow next to Manage Versions Select Recover Unsaved Presentations (in PowerPoint) / Documents (in Word) / Workbooks (in Excel), this will then open a dialog box listing any unsaved files. Select the file and click Open MS OFFICE How to recover an unsaved file in MS Office 2010 Page 7

9 There will be a yellow bar at the top of the page asking you to save the file, click Save As and continue as normal And that s it panic over! MS OFFICE How to recover an unsaved file in MS Office 2010 Page 8

10 TOP 5 FORMULAS TOP 5 FORMULAS Page 9

11 HOW TO SHOW FORMULAS I often receive spreadsheets from my clients that either they or someone else has started off, it can be a little confusing trying to suss out where the information has come from e.g. is it a formula or a link from another worksheet etc. Rather than go into every cell individually to see if a formula appears in the formula bar, an easier way is to show all formulas. Go to the Formulas tab in the ribbon, and click on Show Formulas in the Formula Auditing section. The example below shows what looks like text and numbers, if you show formulas, you'll see 2 of the columns actually contain formulas Ninja Note: You can also use the keyboard shortcut Ctrl+` to show formulas. TOP 5 FORMULAS How To Show Formulas Page 10

12 1. VLOOKUP I ll start this list of my top 5 formulas with my favourite one, and one that saves me so much time! The VLookup formula looks up data from one worksheet and uses it in another. Below is an example of how I would use it with a product inventory. Let s say we have exported product stock information from another source into an Excel spreadsheet. This worksheet contains the product name, product code, and stock levels. We also have another separate spreadsheet saved on the pc which contains the product code and cost price for all of the products. We want to insert the cost price into the stock levels sheet so we can work out total costs of what we have in stock. We have to find the common data found in both sheets in order for the Vlookup formula to work. In this case it would be the Product Code TOP 5 FORMULAS VLookup Page 11

13 With the Vlookup formula we re asking it to look up the product code in the cost spreadsheet and insert the relevant cost price into the stock spreadsheet. In the stock spreadsheet click on the first cell where we want to insert the formula (e.g. cell D2), click on the Formulas tab on the ribbon, click the drop down arrow next to Lookup & Reference, and select VLOOKUP This will open the Functions Argument dialog box TOP 5 FORMULAS VLookup Page 12

14 The Vlookup is split into 4 parts: Lookup_value: This is the starting point of the formula. This is the cell that contains the data we want to look up. In this example that would be cell B2 (Product Code). Table_array: This is the range where data is retrieved from, so in this example it would be the sheet containing cost prices. Ranges can be in the existing worksheet or a different one. Col_index_num: This is the number of the column in the table array that has the information we need. The first column of values in the table is 1. In our example it would the Column B containing the cost prices, so that would be column number 2. Range_lookup: This field defines how close the information has to match e.g. do we want the information to match exactly or just be as close to it as possible. The image below shows the dialog box filled in. It also gives us a preview of the result so we know if we ve included the right information. Once filled in click OK TOP 5 FORMULAS VLookup Page 13

15 Ninja Note: There are some rules to remember with the table array in order for the Vlookup formula to work RULES TO REMEMBER The LEFT column must contain the data being referenced. So in our Cost sheet the Product Code must be on the left. Values in the leftmost column of the lookup range must be unique, i.e. no duplicates. In our example the Product Code can only appear once in the table array. If the formula is to be copied anywhere else the table array referenced in the formula needs to be an absolute reference. In other words, the table array needs to stay fixed and not move down a row if you copy the formula down. To make sure the table array is absolute, press F4 to insert a $ before the column & row figures. For example in the image above you ll see under Table_array $A$2:$B$14; this means the array will stay within cells A2 to B14 no matter where we copy the formula to. The cost price has now been inserted into cell D2 TOP 5 FORMULAS VLookup Page 14

16 Double click the fill handle in the bottom right corner of the cell and the formula will automatically copy down to the end of the list We can always spot check values in the table array on the other sheet to double check it s brought through the correct figures. Remember that Column D still contains the Vlookup formula. If we want to remove the formula & only keep the values then we need to paste special as values. Select Column D and press Copy (or Ctr+c), right click the column and choose Paste special TOP 5 FORMULAS VLookup Page 15

17 Ninja Note: Press Ctrl+Alt+v after copying to also open the paste special dialog box. This will open the paste special dialog box where you can choose how you want to paste the cells. You want to get rid of the formulas and only keep the actual value of the cell, so click on Values and press OK. TOP 5 FORMULAS VLookup Page 16

18 Column D now only contains the actual cost prices And that s it! I use Vlookup all the time and I find it especially useful when combining 2 different sheets into one. I hope you do too! TOP 5 FORMULAS VLookup Page 17

19 2. CONCATENATE The concatenate formula is one of those formulas that I would use almost on a daily basis, so I thought I would share with you an example of how I ve used it recently. For those of you not familiar with this formula, it s an easy way to join several cells of text into one cell of text, as you ll see in the example below. A client asked me if there was an easy way to amend a list of mobile phone numbers which had been entered as 08 followed by the rest of the number. She actually wanted them to appear with the Ireland country code, so they would start with +353 followed by the number. She had a list of over 1000 numbers so manually going into each one & changing it was out of the question! Below is a guide showing you how to use the concatenate formula in order to change the mobile number list. You ll notice the list of mobile numbers don t have a 0 at the beginning this is because they ve been automatically formatted as a number (& not text), so the 0 was not visible (the example shows the mobile number for OutofhoursAdmin) I wanted to create a formula that would insert +353 to the beginning of each number. Firstly, make sure you ve clicked on the cell where you want the answer to appear. Then the best place to start, if you re not familiar with using different formulas, is on the Formulas tab in the ribbon and choose which category the formula you want would fall under. For this example it would be Text, click on the arrow beneath Text and a list of text functions will appear TOP 5 FORMULAS Concatenate Page 18

20 Click on Concatenate and it opens up the Function Arguments dialog box TOP 5 FORMULAS Concatenate Page 19

21 Next we need to enter the 1st text string. If the text was in another cell somewhere within the worksheet, then we would click on that cell and it would automatically appear in the Text1 box. For this example I want the first text string to be +353, so type in +353 into the Text1 box Text2 will be the mobile number from the list, so click on the cell which contains the first mobile number You can see the actual formula result as you type the individual text strings, so you can keep an eye on whether it s correct without having to come out of it. Click OK, and the cell will now contain the mobile number preceded by +353 TOP 5 FORMULAS Concatenate Page 20

22 Then, copy the formula down the rest of the column a quick way of doing this is to double click the drag fill handle in the bottom right corner of the cell and let autofill do its job And that s one way to use the concatenate formula I hope you find it as useful as I do TOP 5 FORMULAS Concatenate Page 21

23 3. SUMIF AND SUMIFS You are all probably familiar with the SUM function to add up a total amount in a given range. There is an extension to this whereby we combine the IF function with the SUM to total a range given a set criteria. Below is an example of how we can use this formula. We have a table showing clients, tasks done and cost for each client We can easily apply the SUM function at the end of Column D to add up the total cost price, however what if we only wanted to total the cost specifically for data entry tasks? That s where SUMIF comes in. Click on the Formulas tab on the ribbon, click the drop down arrow on Math & Trig and scroll down to SUMIF. If you hover over it a description of the function appears TOP 5 FORMULAS SumIf and SumIfs Page 22

24 This opens the Function Arguments dialog box The formula is split into 3 parts: Range: the range of cells that we want to be evaluated by the criteria, e.g. the Task column. Criteria: the condition that specifies which cells are to be added, e.g. cells containing the words Data entry. TOP 5 FORMULAS SumIf and SumIfs Page 23

25 Sum_range: the actual cells to be added, e.g. the Cost column. The image below shows the dialog box filled in. It also gives us a preview of the result so we know if we ve included the right information. Once filled in click OK This gives us the answer which we can double check by adding together cells D4, D6, D10, D12 and D16 TOP 5 FORMULAS SumIf and SumIfs Page 24

26 That is one example of how SUMIF can come in handy. A recent extension of that is SUMIFS which means we can add together cells that meet multiple conditions. Using the same example as above, let s say we want to add together the total cost of Newsletters after 23 rd February. Click on the Formulas tab on the ribbon, click the drop down arrow on Math & Trig and scroll down to SUMIFS This opens the Function Arguments dialog box TOP 5 FORMULAS SumIf and SumIfs Page 25

27 This gives us the answer 64 which we can double check by adding together cells D8 and D15 Ninja Note: The format of the date in the above formula has to match how the date is entered in the spreadsheet, i.e. 23-Feb is how it is formatted but it s entered as 23/02/2015 in the actual spreadsheet. If we wanted to add more criteria to the formula, e.g. only include Client B, we click on the down arrow on the right hand side of the function arguments and we can add as many as we like (I think the limit is something like 120!) TOP 5 FORMULAS SumIf and SumIfs Page 26

28 And that s it! They are a couple of ways to use SumIf and SumIfs. TOP 5 FORMULAS SumIf and SumIfs Page 27

29 4. LEFT, RIGHT AND MID I noticed that one of my clients had downloaded information from their accounting software into Excel. They were retyping data that was already there because they wanted the information in separate columns. I showed them a quick and easy way of doing this by using the handy left, right and mid functions Let s say we have a list of invoices downloaded into Excel, each cell contains the invoice number (4 digits), the customer code (also 4 digits) and the due date (5 characters including the - ) In order to have these 3 elements in separate columns, we need to use the Left, Mid and Right functions. Firstly click on the cell where you want the first section of data to appear. In this example we want column C to contain the invoice numbers, column D to have the customer codes and column E to contain the due dates. So, in cell C2 we need to type in the following formula:- TOP 5 FORMULAS Left, Right and Mid Page 28

30 This formula is then copied down to the end of the list, so column C contains the invoice numbers Next we want to do the same for the customer code, but this isn t at the start of the text, this is in the middle of the text for this we use the Mid formula. Click on cell D2 and type the following TOP 5 FORMULAS Left, Right and Mid Page 29

31 This formula is then copied down to the end of the list, so column D contains the customer codes Next we want to do the same for the due date, again this isn t at the start or middle of the text, this is at the end of the text, and for this we use the Right formula. Click on cell E2 and type the following TOP 5 FORMULAS Left, Right and Mid Page 30

32 Again, the formula is then copied down to the end of the list, so column E contains the due dates And that s it 3 quick and easy formulas to help you save a bit of time. TOP 5 FORMULAS Left, Right and Mid Page 31

33 5. TRIM Have you ever imported data into an Excel spreadsheet from another source e.g. Outlook, text file etc, only to find that some of the cells are formatted differently and have spaces in front of the first word? So, what do you do? Do you go into each cell and manually delete the spaces (and hope that you ve not missed any)? Or do you insert an additional column and type in a formula that gets rid of these nuisance spaces? I would go with the latter if I were you! The example below shows columns B and C with spaces before some of the text In order to remove these additional spaces we use the function TRIM. Insert an additional column to the right of column B by right clicking on Column C and selecting Insert TOP 5 FORMULAS Trim Page 32

34 Click on the first blank cell where you want to add the formula (i.e. cell C5) then click on the Formulas tab on the ribbon, click on the drop down arrow next to Text and scroll down to Trim TOP 5 FORMULAS Trim Page 33

35 This opens up the Function Arguments dialog box. There is also a description of what the function does Click on the first cell containing the data we want to trim (i.e. cell B5) and it will automatically insert the cell into the Text box, and click OK. You will also see a preview of the result so you can see whether the formula is the correct one. There is no difference to the result for cell B5 as it contained no extra spaces TOP 5 FORMULAS Trim Page 34

36 Copy and paste the formula down to the bottom of the list. Ninja Note: Double click the fill handle in the bottom right corner of the cell and it will automatically copy the formula down to the bottom of the list. TOP 5 FORMULAS Trim Page 35

37 You ll see all the data in Column C is now left justified and additional spaces have been removed. We now need to do the same for Column D. Follow the steps above for inserting the Trim formula. A quicker way is to click into the first blank cell where you want the formula (i.e. cell E5), and start to type =trim, Excel will give you a list of functions beginning with tr as you type, double click on Trim Click on the first cell we want to trim i.e. cell D5 and it will insert the cell reference into the formula Close the formula by typing ) and press return TOP 5 FORMULAS Trim Page 36

38 Again double click the fill handle in the bottom right corner of the cell to automatically copy the formula down to the end of the list You ll see all the data in Column E is now left justified and additional spaces have been removed. TOP 5 FORMULAS Trim Page 37

39 We now need to remove the columns with spaces leaving the 2 new columns. However if we delete the 2 original columns, all data in Columns C and E will disappear! This is because they still contain the formula linking to the text in Columns B and D. To rectify this, we need to paste special the cells. Highlight the text in Column C, click Copy (or press Ctrl+C), then right click the mouse and select Paste Special Ninja Note: Press Ctrl+Alt+v after copying to also open the paste special dialog box. This will open another menu where you can choose how you want to paste the cells. You want to get rid of the formulas and only keep the actual value/text of the cell, so click on Values and press OK. TOP 5 FORMULAS Trim Page 38

40 Column C now contains the correct information so we can delete Column B. We now need to repeat the process for Column D (was Column E before we deleted Column B above). Copy and paste special values Column D then delete Column C That s it a handy formula to remove additional spaces! TOP 5 FORMULAS Trim Page 39

41 BONUS FORMULA: UPPER, LOWER AND PROPER Have you ever re-typed a list in Excel because it was in the wrong text case? Next time, use formulas to change the text case it saves so much time! If, for example, Column A contained text which was a mixture of upper and lowercase letters it might look a bit messy, it may only be your shopping list, but it still doesn t look right! So you want to tidy it up a bit and have all words begin with a capital letter. Go into the next blank cell and use the formula proper to change it:- Then use the autofill handle (bottom right corner of the cell) and drag the formula down to the end of your list (or copy & paste the formula down, whichever you prefer). This then duplicates your list in proper text i.e. capital letter at the start of every word. Ninja Note: Double click the autofill handle & the formula will automatically copy down to the last row of the list. TOP 5 FORMULAS Bonus Formula: Upper, Lower and Proper Page 40

42 Of course, now when you delete the text in column A, everything in column B disappears! This is because it still contains a formula linking to the text in column A. To rectify this, you need to paste special the cells. Highlight the text in column B (all cells which contain a formula), click Copy (or press Ctrl+C), then right click the mouse and select Paste Special Ninja Note: Press Ctrl+Alt+v after copying to also open the paste special dialog box. TOP 5 FORMULAS Bonus Formula: Upper, Lower and Proper Page 41

43 This will open another menu where you can choose how you want to paste the cells. You want to get rid of the formulas and only keep the actual value/text of the cell, so click on Values and press OK. You ll then notice that column B, which had the formula in, now contains the correct text and you can now delete everything in column A The same method applies if you want the text all in capitals, or all in lower case the only change is the formula. TOP 5 FORMULAS Bonus Formula: Upper, Lower and Proper Page 42

44 For CAPITALS, use:- Then copy and paste special values as before. For lowercase, use:- TOP 5 FORMULAS Bonus Formula: Upper, Lower and Proper Page 43

45 Again copy & paste special values as before. And that s it! Hopefully it will save you time, instead of having to type things out again! TOP 5 FORMULAS Bonus Formula: Upper, Lower and Proper Page 44

46 THANK YOU Thanks for downloading this free ebook I hope you have found it useful and have learnt at least one little nugget of information! I update my blog with MS Office tutorials on a regular basis, so please keep checking back for any others that you might find useful. If you find you need any help with MS Office, feel free to contact me via OutofhoursAdmin. Thanks again, Sharon THANK YOU Page 45

MS Excel 2007 Tutorials OutofhoursAdmin

MS Excel 2007 Tutorials OutofhoursAdmin CONTENTS INTRODUCTION... 2 How To Start (& Maintain) A Productive Day... 3 MS OFFICE... 4 Which Version of Microsoft Office Do I Have?... 5 How To Set Your Default Language... 6 How To Customise Your Recent

More information

How to use the Vlookup function in Excel

How to use the Vlookup function in Excel How to use the Vlookup function in Excel The Vlookup function combined with the IF function would have to be some of the most used functions in all my Excel spreadsheets. The combination of these functions

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

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems Advanced Excel Presented By: Chad Jarvi, CPA President, Civic Systems IMFOA Conference April 11, 2019 3:15 pm 4:15 pm COPY AND PASTE... 4 USING THE RIBBON... 4 USING RIGHT CLICK... 4 USING CTRL-C AND CTRL-V...

More information

Excel 2. Module 2 Formulas & Functions

Excel 2. Module 2 Formulas & Functions Excel 2 Module 2 Formulas & Functions Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson

More information

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts

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

More information

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

Vlookup and Sumif Formulas to assist summarizing queried data

Vlookup and Sumif Formulas to assist summarizing queried data Vlookup and Sumif Formulas to assist summarizing queried data When accessing data from Foundation through the MS Query tool, at times it is necessary to join multiple tables together to retrieve the required

More information

10 Ways To Efficiently Analyze Your Accounting Data in Excel

10 Ways To Efficiently Analyze Your Accounting Data in Excel 10 Ways To Efficiently Analyze Your Accounting Data in Excel Live Demonstration Investment advisory services are offered through CliftonLarsonAllen Wealth Advisors, LLC, an SEC-registered investment advisor.

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

2. This is a cell; this cell is designated as A1.

2. This is a cell; this cell is designated as A1. Queen s Learning Commons: Microsoft Excel Basics 1. These are the columns. 2. This is a cell; this cell is designated as A1. 3. Let s make a table. Click on the box you want to put text in and simply begin

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

Excel 2016 Functions

Excel 2016 Functions Excel 2016 Functions A function is a preset formula in Excel that is intended to carry out a specific calculations, logical tests, formats, etc. in the cell in which it is located. All functions begin

More information

1.a) Go to it should be accessible in all browsers

1.a) Go to  it should be accessible in all browsers ECO 445: International Trade Professor Jack Rossbach Instructions on doing the Least Traded Product Exercise with Excel Step 1 Download Data from Comtrade [This step is done for you] 1.a) Go to http://comtrade.un.org/db/dqquickquery.aspx

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: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: & 27097

Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: & 27097 Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: 27083 & 27097 Recording and Using Macros: Macros can be used to record steps

More information

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Top 15 Excel Tutorials

Top 15 Excel Tutorials Top 15 Excel Tutorials Follow us: TeachExcel.com Contents How to Input, Edit, and Manage Formulas and Functions in Excel... 2 How to Quickly Find Data Anywhere in Excel... 8 How to use the Vlookup Function

More information

IF & VLOOKUP Function

IF & VLOOKUP Function IF & VLOOKUP Function If Function An If function is used to make logical comparisons between values, returning a value of either True or False. The if function will carry out a specific operation, based

More information

Microsoft Excel Microsoft Excel

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

More information

Instructions on Adding Zeros to the Comtrade Data

Instructions on Adding Zeros to the Comtrade Data Instructions on Adding Zeros to the Comtrade Data Required: An excel spreadshheet with the commodity codes for all products you want included. In this exercise we will want all 4-digit SITC Revision 2

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Chapter A spreadsheet is a computer program that turns the computer into a very powerful calculator. Headings and comments can be entered along with detailed formulas. The spreadsheet screen is divided

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

Working with Excel CHAPTER 1

Working with Excel CHAPTER 1 CHAPTER 1 Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to quickly create powerful mathematical, financial, and

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

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

More information

Table of Contents. Tip 1: Page setup 3. Tip 2: Printing different ranges in a spreadsheet 5. Tip 3: Ensuring that a long formula is displayed 6

Table of Contents. Tip 1: Page setup 3. Tip 2: Printing different ranges in a spreadsheet 5. Tip 3: Ensuring that a long formula is displayed 6 Table of Contents Tip 1: Page setup 3 Tip 2: Printing different ranges in a spreadsheet 5 Tip 3: Ensuring that a long formula is displayed 6 Tip 4: Displaying two worksheets at the same time 7 Tip 5: How

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

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to create powerful mathematical, financial, and statistical models

More information

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets

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

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

Spreadsheet Functions

Spreadsheet Functions Class Description This is an introduction to the use of functions in spreadsheets, with a focus on Microsoft Excel and Google Drive Spreadsheets. The main topics are arithmetic calculations and order of

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015 EXCEL AS BUSINESS ANALYSIS TOOL 10-May-2015 TOUCH POINTS Part A- Excel Shortcuts Part B: Useful Excel Functions Part C: Useful Excel Formulas Part D: Sheet and Cell Protection Part A: EXCEL SHORTCUTS EXCEL

More information

Data Service Center May, Compiled by: Katey Semmel Donna Frieze

Data Service Center May, Compiled by: Katey Semmel Donna Frieze www.dataservice.org Data Service Center May, 2000 478-8957 Compiled by: Katey Semmel Donna Frieze Table of Contents Charting Data... 3 Customizing Charts... 6 Other Customizations... 9 Chart Toolbar...12

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Excel 2013 Quick Start Guide The Excel Window File Tab: Click to access actions like Print, Save As, etc. Also to set Excel options. Ribbon: Logically organizes actions onto Tabs, Groups, and Buttons to

More information

Microsoft Excel 2010 Basic

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

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

Excel Level 3 - Advanced

Excel Level 3 - Advanced Excel Level 3 - Advanced Introduction This document covers some of the more advanced features of Excel. Spreadsheets can be used in such a multiplicity of ways that it cannot hope to even touch on all

More information

Advanced Excel for EMIS Coordinators

Advanced Excel for EMIS Coordinators Advanced Excel for EMIS Coordinators Helen Mills helenmills@metasolutions.net 2015 Metropolitan Educational Technology Association Outline Macros Conditional Formatting Text to Columns Pivot Tables V-Lookup

More information

Excel Foundation (Step 2)

Excel Foundation (Step 2) Excel 2007 Foundation (Step 2) Table of Contents Working with Names... 3 Default Names... 3 Naming Rules... 3 Creating a Name... 4 Defining Names... 4 Creating Multiple Names... 5 Selecting Names... 5

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

What is a spreadsheet?

What is a spreadsheet? Microsoft Excel is a spreadsheet developed by Microsoft. It is a software program included in the Microsoft Office suite (Others include MS Word, MS PowerPoint, MS Access etc.). Microsoft Excel is used

More information

Excel Time Savers Page 1

Excel Time Savers Page 1 Excel Time Savers Page 1 Excel Time Savers In this document we have summarised a few useful tasks and actions that can be real time savers when doing a lot of work in Excel. The first section introduces

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

THE FORMULAS TAB, CELL REFERENCING,THE VIEW TAB & WORKBOOK SECURITY THE FORMULAS TAB, CELL REFERENCING, THE VIEW TAB & WORKBOOK SECURITY OBJECTIVES

THE FORMULAS TAB, CELL REFERENCING,THE VIEW TAB & WORKBOOK SECURITY THE FORMULAS TAB, CELL REFERENCING, THE VIEW TAB & WORKBOOK SECURITY OBJECTIVES THE FORMULAS TAB, CELL REFERENCING,THE VIEW TAB & WORKBOOK SECURITY Session 9 THE FORMULAS TAB, CELL REFERENCING, THE VIEW TAB & WORKBOOK SECURITY General Objectives OBJECTIVES Session 9 In this Session,

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

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

Create formulas in Excel

Create formulas in Excel Training Create formulas in Excel EXERCISE 1: TYPE SOME SIMPLE FORMULAS TO ADD, SUBTRACT, MULTIPLY, AND DIVIDE 1. Click in cell A1. First you ll add two numbers. 2. Type =534+382. 3. Press ENTER on your

More information

EXCEL INTERMEDIATE 2016

EXCEL INTERMEDIATE 2016 EXCEL INTERMEDIATE 2016 Alexandria Technical and Community College Customized Training Technology Specialist 1601 Jefferson Street, Alexandria, MN 56308 320-762-4539 Linda Muchow lindac@alextech.edu 1

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

QUICK EXCEL TUTORIAL. The Very Basics

QUICK EXCEL TUTORIAL. The Very Basics QUICK EXCEL TUTORIAL The Very Basics You Are Here. Titles & Column Headers Merging Cells Text Alignment When we work on spread sheets we often need to have a title and/or header clearly visible. Merge

More information

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

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

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

CMPF124 Microsoft Excel Tutorial

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

More information

Excel 2016: Formulas & Functions

Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions Rylander Consulting www.rylanderconsulting.com sandy@rylanderconsulting.com 425.445.0064 ii Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions i Table of

More information

1. MS EXCEL. a. Charts/Graphs

1. MS EXCEL. a. Charts/Graphs 1. MS EXCEL 3 tips to make your week easier! (MS Excel) In this guide we will be focusing on some of the unknown and well known features of Microsoft Excel. There are very few people, if any at all, on

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

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename.

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename. Excel 2010 Worksheet Basics Introduction Page 1 Every Excel workbook contains at least one or more worksheets. If you are working with a large amount of related data, you can use worksheets to help organize

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

Excel 2016 Functions

Excel 2016 Functions Flash Fill New in Office 2013 is a feature called Flash fill. Flash fill will help you fill in empty cells within a spreadsheet based on patterns that already exist. You may need to provide a couple of

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

EXCELLING WITH ANALYSIS AND VISUALIZATION

EXCELLING WITH ANALYSIS AND VISUALIZATION EXCELLING WITH ANALYSIS AND VISUALIZATION A PRACTICAL GUIDE FOR DEALING WITH DATA Prepared by Ann K. Emery July 2016 Ann K. Emery 1 Welcome Hello there! In July 2016, I led two workshops Excel Basics for

More information

PowerPoint Basics: Create a Photo Slide Show

PowerPoint Basics: Create a Photo Slide Show PowerPoint Basics: Create a Photo Slide Show P 570 / 1 Here s an Enjoyable Way to Learn How to Use Microsoft PowerPoint Microsoft PowerPoint is a program included with all versions of Microsoft Office.

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

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

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Excel Reports: Formulas or PivotTables

Excel Reports: Formulas or PivotTables Excel Reports: Formulas or PivotTables TABLE OF CONTENTS 1. Cover Page 2. The Great... 3. Formula-based Reports with SUMIFS 4. Pivot Tables 5. Comparison The great...is a success of little things that

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

SESSION HANDOUT Intermediate Excel. Intermediate Excel SESSION HANDOUT. Applied Client Network

SESSION HANDOUT Intermediate Excel. Intermediate Excel SESSION HANDOUT. Applied Client Network SESSION HANDOUT Applied Client Network www.appliedclientnetwork.org Prepared for Applied Client Network Applied Client Network 2340 S. River Road, Suite 311 Des Plaines, IL 60018 Phone: 220-220-1444 Fax:

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 THE BASICS PAGE 02! What is Microsoft Excel?! Important Microsoft Excel Terms! Opening Microsoft Excel 2010! The Title Bar! Page View, Zoom, and Sheets MENUS...PAGE

More information

VLOOKUP Function Purpose (Mac Guide)

VLOOKUP Function Purpose (Mac Guide) VLOOKUP Function Purpose (Mac Guide) Let s say that you have two different Excel documents. Each document has different student achievement or outcomes data. In this example, the first document has DIBELS

More information

Excel VLOOKUP. An EMIS Coordinator s Friend

Excel VLOOKUP. An EMIS Coordinator s Friend Excel VLOOKUP An EMIS Coordinator s Friend Vlookup, a function in excel, stands for Vertical Lookup. This function allows you to search a specific table of data, look for a match within the table of data

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart Microsoft Excel 2013 Chapter 1 Creating a Worksheet and a Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Enter a simple function Copy the

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

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 Table of contents The use of range names 1 DESCRIPTION 1 TO DEFINE A NAME 2 USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 THE ROUND FUNCTION 7 THE SUMIF

More information

Module 4 : Spreadsheets

Module 4 : Spreadsheets Module 4 : Spreadsheets What is a spreadsheet program? A spreadsheet program allows you to store, organise and analyse information. Applications of spreadsheets focus on generating numeric information

More information

In this chapter, I introduce you to Excel s statistical functions and data. Understanding Excel s Statistical Capabilities. Chapter 2.

In this chapter, I introduce you to Excel s statistical functions and data. Understanding Excel s Statistical Capabilities. Chapter 2. Chapter 2 Understanding Excel s Statistical Capabilities In This Chapter Working with worksheet functions Creating a shortcut to statistical functions Getting an array of results Naming arrays Tooling

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

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

EMIS - Excel Reference Guide

EMIS - Excel Reference Guide EMIS - Excel Reference Guide Create Source Data Files Create a Source Data File from your Student Software program. Current Year (valid as of the day pulled) Previous Year (used when reviewing data that

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

Section 6. Functions

Section 6. Functions Section 6 Functions By the end of this Section you should be able to: Use Logical Functions Use Date and Time Functions Use Lookup Functions Use Maths and Financial Functions Use Concatenate Nest Functions

More information

KNACK TRAINING. MICROSOFT OFFICE: TIPS & TRICKS FOR EFFICIENCY

KNACK TRAINING.     MICROSOFT OFFICE: TIPS & TRICKS FOR EFFICIENCY KNACK TRAINING http://knacktraining.com http://youtube.com/neilmalek MICROSOFT OFFICE: TIPS & TRICKS FOR EFFICIENCY 2 TABLE OF CONTENTS MICROSOFT WORD MOUSE & KEYBOARD TRICKS NAVIGATION 4 SELECTION 7 FORMATTING

More information

Microsoft Office 2010 consists of five core programs: Word, Excel,

Microsoft Office 2010 consists of five core programs: Word, Excel, Chapter 1 Introducing Microsoft Office 2010 In This Chapter Starting an Office 2010 program Learning the Microsoft Office Backstage View Using the Quick Access toolbar Learning the Ribbon Customizing an

More information