Top 20 Excel Limitations that might Frustrate You!

Size: px
Start display at page:

Download "Top 20 Excel Limitations that might Frustrate You!"

Transcription

1 Excel is obviously one of the most important products in the world. It is very helpful in managing, analyzing data. But there is also something that may get us frustrated when using Excel. Today I d like to share with you some frustrating issues and how to solve them. Table of Contents 1 1. Data cannot be displayed as you want 2 2. Dropping of leading zeros 3 3. Large number formatted as scientific notation 4 4. VLOOKUP approximate match is horrible 5 5. VLOOKUP is not case-sensitive 6 6. Cannot start from an arbitrary column or row with VLOOKUP 7 7. VLOOKUP does not adjust column offset if you delete columns 8 8. Cell referencing changes when copying formulas 9 9. Not easy to view whole content if the cell s content is too long Cannot work seamlessly with Microsoft Word Recalculation of formulas takes a long time sometimes 11.1 Turn off automatic recalculation 11.2 Change the number of times Excel iterates a formula No easy way to rename multiple worksheets Pivot tables do not have median Pivot tables cannot count unique values No sumifs/countifs/averageifs equivalents for functions such as max or median Features available in Excel for Windows that are not available in Excel for Mac Cannot quick access to tables in Excel Options dialog box Limits of Excel No Automatic spell checking in Excel Excel Crashes easily when running macros 21 Download working file 1. Data cannot be displayed as you want Suppose that you want to display 2-1 representing 1 st Feb in Excel, what will you get after you enter 2-1 into Excel? Unfortunately, you will get 1-Feb as shown in Figure 1. At this time, the method of formatting cells may come to our mind. But if we really open the Format Cells dialog box and click on Date, you will find that all formats available in Type field are useless in our case. What should we do? Read More: Use of Offset Function in Excel [Offset Match Combo, Dynamic Range] Luckily, EXCEL offers us TEXT function which is much more flexible than Format Cells All rights reserved to ExcelDemy.com. 1

2 dialog box. The left panel in Figure 1 shows you how to fix above problem using TEXT function. It presents three examples and what TEXT function will return with each of four formats. If the number of digits is less than the expected number of digits, EXCEL will put leading zero before the actual number. For example, TEXT($C7, M-D ) will return 5-23 while TEXT($C7, MM-DD ) returns You can look at Figure 1 closely and figure out what is going on behind the scenes. In summary, TEXT is a good option for you to format your values. For example, you can also use format YYYY-MM-DD to display Figure 1 2. Dropping of leading zeros If you enter social security numbers, phone numbers, credit card numbers or postal codes into a workbook, Excel treats them as numbers and applies a general or number format to them. As a result, leading zeros are removed from those number codes. For example, you will get 123 if you enter into cell C3 (Figure 2). Similarly, Excel will display 1234 if you put into cell C4. Obviously, this is not what you want. Values in cells from C3 through C5 are what you want. Then what should you do? Same as above problem, we can apply TEXT function here to pad a number code with leading zeros. After using TEXT function to add leading zeros, we can use paste special value to copy values from E3:E5 into cells from E8 through E10. You can see that values in range E8:E10 contain leading zeros now. Another way to add leading zeros is to put a leading single quotation mark ( ) before number codes. Just like what you see in cell B8. Here I have to remind you that content in cell B3 and cell E8 are different though they seem to be the same thing. Figure 2 3. Large number formatted as scientific notation Any large number entered into Excel is stored as a number and abbreviated in scientific notation. Suppose that you put a long number like in cell B2. Excel will apply a general number to it and the will be presented in scientific notation as E+13. Is it possible to prevent EXCEL from doing this? The simplest way is to right click on cell B2. Then select Format Cells to open Format Cells All rights reserved to ExcelDemy.com. 2

3 dialog box. In the prompted Format Cells dialog box, select Number and set the number of decimal places as 0 (Figure 3). So far, the long number will be displayed as instead of scientific notation. Figure 3 4. VLOOKUP approximate match is horrible Many people complain that you never be sure what VLOOKUP does with approximate match. Look at Figure 4.1, if your lookup value is chun, Excel will return $93,500. When comparing against data table in range B2:E10, you will find that this value is not what we want. In our impression, the correct value should be $151,200 as chun is similar to Chung. Figure 4.1 Well, VLOOKUP approximate match does not work in the way that we think. It moves through the lookup table row by row and ultimately stops on the row in which the value is less than or equal to the lookup value when the value in the next row is greater than lookup value. Let s look at the above example again. Bueller is less than chun while Chung is greater than chun and therefore Excel stopped on 4 th row and returned value $93,500 in column C. Similarly, Excel stopped on 1 st row after it reached value $71,900 which is less than $89,450 and the value in the next row is greater than $89,450. The intersection of 1 st row and column D gives you a commission rate of 6%. However, if you look at the data range closely, you will find that the commission rate for $89,450 is %7. This is different from %6 that we just got from Figure 4.1. Is there anything wrong? Yes, we need to sort lookup table ascendingly first before using approximate match since VLOOKUP walks down the lookup table row by row. Figure 4.2 shows another lookup table in range B12:E20. This table was sorted by Sales in ascending sequence. Now you will find that the commission rate for $89,450 is correct now. Figure 4.2 Finally, I have to remind you again. Please sort the lookup range in ascending order before using VLOOKUP approximate match. Otherwise, you will get errors. All rights reserved to ExcelDemy.com. 3

4 5. VLOOKUP is not case-sensitive Many people are not aware that VLOOKUP is not case-sensitive and this may cause you to make mistake. Let s look at Figure 5.1. marie will be matched when the VLOOKUP value is Marie and thus EXCEL returns 14 in cell F3. In fact, 23 in cell C4 is what we really want. How to prevent this kind of mistake from happening? Figure 5.1 A combination of INDEX, MATCH, and EXACT functions can be used here to get correct number 23. RangeG8:G10 gives you formula returning numbers in range F8:F10. Formula MATCH(TRUE,INDEX(EXACT($E8,$B$2:$B$10),0),0) is the key to solving the problem. It gives you the row reference in which the exact match (Marie in our case) exists. Have a try on your own. You will find that the row number is 3. Figure 5.2 Another easier approach is to use the combination of OFFSET and MATCH function. For more details on OFFSET function, you can read one of my previous articles Excel Offset Function with 3 Real Life Uses. Figure Cannot start from an arbitrary column or row with VLOOKUP It is annoying that we can only perform a left-to-right lookup with VLOOKUP function. But if you have read the article recommended in section 5, you will know that OFFSET/MATCH function can enable you starting the search from any column or row. In the following example, the value in cell C8 will change as you change the values in cell C7 and B8. Figure 6 7. VLOOKUP does not adjust column offset if you delete columns Suppose that we have a lookup range starts from K3 through N10. And we do VLOOKUP approximate match in range P2:R4. Let s take formula in cell Q3 as an example. The formula will be =VLOOKUP(P3,K3:N10,3,TRUE) if we want to retrieve approximate All rights reserved to ExcelDemy.com. 4

5 commission rate for chun. Read More: VLOOKUP Function in Excel: Learn with Examples After removing column L, you will find that the above formula will be replaced with =VLOOKUP(O3,K3:M10,3,TRUE). The lookup table was changed automatically. Even the cell reference for lookup value was also changed from P3 to O3. All of these are right. But the column offset is still 3. In fact, it should be 2 as commission rate is in the second column of the lookup table now. Figure 7 8. Cell referencing changes when copying formulas Look at Figure 8, you will see that the cell references will change after you copy formula =COUNTIFS($C3:$C10, = &$F3) from cell G3 to cell G4. The formula is =COUNTIFS($C4:$C11, = &$F4) in cell G4 and this formula returns 4. But if you look at range B2:D10 closely, you will find that the number of male students should be 5 instead of 4. We got a mistake here. The reason is that you apply relative reference $C3:$C10 and it can change after you copy it to another cell. The right way here is to apply absolute reference and replace $C3:$C10 with $C4:$C11. Just like what we did in range F7:H9. It s very easy to make errors when pasting formulas and you should be careful. Figure 8 9. Not easy to view whole content if the cell s content is too long In order to illustrate this issue, I just copied a paragraph from this article into cell B2. Figure 9.1 shows you that there is only one line in the worksheet and it is difficult to view the whole content. Figure 9.1 After adding line break inside cell B2 by pressing ALT+ENTER, we can get something like that shown in Figure 9.2. There are 7 lines now. Figure 9.2 All rights reserved to ExcelDemy.com. 5

6 10. Cannot work seamlessly with Microsoft Word Excel splits one row containing a carriage return into multiple rows when copying a table from word into excel. Suppose that there is a doc file Copy table from word to excel.docx containing below table. No Details Date 1 Notification Date Last Date for Receiving of filled in Application Form 3 Announcement of Eligible Candidates List for Entrance Test If we copy this table into a worksheet using CTRL+C and CTRL+V, we will get something like that shown in Figure You can see that Last Date for Receiving of filled in Application Form is split into two rows. This is absolutely not what we want. Figure 10.1 To prevent this from happening, we can use VBA macro to extract tables from Word file into Excel file. The code in the following table can retrieve data from all the tables within a word document into Excel file. Source code Sub Import_Table() Dim wddoc As Object Dim wdfilename As Variant Dim tableno As Integer 'table number in Word Dim irow As Long Dim icol As Integer 'row index in Excel 'column index in Excel Dim resultrow As Long Dim tablestart As Integer All rights reserved to ExcelDemy.com. 6

7 Dim tabletot As Integer On Error Resume Next ActiveSheet.Range("A:AZ").ClearContents wdfilename = Application.GetOpenFilename("Word files (*.docx),*.docx",, _ "Browse for file containing table to be imported") If wdfilename = False Then Exit Sub '(user canceled import file browser) Set wddoc = GetObject(wdFileName) 'open Word file With wddoc tableno = wddoc.tables.count tabletot = wddoc.tables.count If tableno = 0 Then MsgBox "This document contains no tables", _ All rights reserved to ExcelDemy.com. 7

8 vbexclamation, "Import Word Table" ElseIf tableno > 1 Then tableno = InputBox("This Word document contains " & tableno & " tables." & vbcrlf & _ "Enter the table to start from", "Import Word Table", "1") End If resultrow = 1 For tablestart = 1 To tabletot With.tables(tableStart) 'copy cell contents from Word table cells to Excel cells For irow = 1 To.Rows.Count For icol = 1 To.Columns.Count ThisWorkbook.Worksheets("Import_Table").Cells(resultRow, icol) = WorksheetFunction.Clean(.cell(iRow, icol).range.text) Next icol resultrow = resultrow + 1 Next irow End With All rights reserved to ExcelDemy.com. 8

9 resultrow = resultrow + 1 Next tablestart End With End Sub After clicking on the Import table button, we will get a table similar to that in Figure I changed the column width here manually to demonstrate that Last Date for Receiving of filled in Application Form was not split into two rows. Figure Recalculation of formulas takes a long time sometimes Excel recalculates your workbook s formulas when you open the workbook or when you make significant changes. This feature is good but these recalculations can take a long time. It is not so good from this point of view. Below are two approaches for you to control calculation and save your time. Turn off automatic recalculation Click on the File tab -> Options and then click the Formulas category. You will get Excel Options dialog box as shown in Figure Automatic under Workbook Calculation in the Calculation options section means that Excel will recalculate all dependent formulas every time you make a change to a value, formula or a name. Automatic except for data tables means that Excel will recalculate all dependent formulas except for data tables. The last choice Manual can enable you to turn off automatic recalculation. Figure 11.1 Figure 11.2 presents you another method to turn off automatic recalculation. There are also three options for you to choose: Automatic, Automatic Except for Data Tables and Manual. All rights reserved to ExcelDemy.com. 9

10 Figure 11.2 After you turn off automatic recalculation, you can click the Calculate Now button in the Calculation group on the Formulas tab (Figure 11.2). This method can enable Excel to recalculate all open worksheets. Another option Calculate Sheet button (also shown in Figure 11.2) can make Excel recalculate active worksheet and any charts/chart sheets linked to this worksheet. Change the number of times Excel iterates a formula Please make sure Enable iterative calculation check box was selected before you set maximum iterations and maximum change. The higher the number of iterations, the more time Excel will need to recalculate a worksheet. The smaller the maximum amount of change, the more accurate the result and the more time Excel needs to recalculate a worksheet. Figure No easy way to rename multiple worksheets Sometimes, we need to insert multiple worksheets. What will you do to rename all of those worksheets? Use Rename command to rename them one by one? What if you have to rename 100 worksheets? It will take you a lot of time to finish the task. Luckily, we can use VBA code for renaming multiple worksheets. Here is the code for inserting and rename multiple worksheets. Source code Sub rename_tab() Application.DisplayAlerts = False 'Define variable Dim wbk As Workbook Dim ws As Worksheet All rights reserved to ExcelDemy.com. 10

11 'Open workbookfile Set fnm = ThisWorkbook.Sheets(1).Cells(1, 2) Set wbk = Workbooks.Open(fnm) 'Set workbook as active workbook wbk.activate For i = 2 To ThisWorkbook.Worksheets(2).UsedRange.Rows.Count 'Return number of all worksheet in the active workbook n = Worksheets.Count 'Add worksheet after the last worksheet Set ws = Sheets.Add(After:=Worksheets(Worksheets.Count)) 'Give the newly added worksheet a name ws.name = ThisWorkbook.Worksheets(2).Cells(i, 2) Next i All rights reserved to ExcelDemy.com. 11

12 'Close and save active workbook wbk.close Savechanges:=True End Sub Figure 12.1 shows you how to design and use this macro. Suppose that the macro was saved in Insert and Rename Multiple Tabs.xlsm files. There are two tabs in this xlsm file. The first one (left panel of Figure 12.1) is to include file in which you want to insert tabs. You need to enter the file pathname into cell B1. The macro will open the file listed in cell B1 (WS.xlsx in our case). The second worksheet (right panel of Figure 12.1) provides tab names which will be used by VBA macro. You can add as many as tab names into the second worksheet. Figure 12.1 Figure 12.2 presents you the screenshots for WS.xlsx before and after running above VBA code. Figure Pivot tables do not have median A pivot table is one of the most powerful features. It allows you to summarize, analyze, explore and present your data. It helps you extract the significant insigt froinsightrge and detailed data set. The left panel in Figure 13.1 contains data to be analyzed in our case. You can see that we have height and weight for different students as well as their sex and age. Click any cell in the range B2:F21. On the Insert tab, click PivotTable. Choose the default location in the prompted Create PivotTable dialog box. Range H2:L21 in the same worksheet was chosen in this case. You can see that this range is selected in the middle panel of Figure In the appeared PivotTable field list dialog box (right panel of Figure 13.1), drag SEX and AGE to the Row Labels area. Then drag WEIGHT to the Values area. Finally, a pivot table including cells from H2 through I16 was created. Figure 13.1 Per the pivot table, the sum of weight for male students who are 11 is And the sum of All rights reserved to ExcelDemy.com. 12

13 weight for female students who are 13 is Plus the sum statistics, we can also count the number of students who are 13 or compute the average weight. Right-click on any cell in the pivot table (range H2:I16) and then choose Value Field Settings. In the Value Field Settings dialog box (right panel of Figure 13.2), you can select the type of calculation in which you are interested. Figure 13.2 The type of calculation includes Count, Average, Max, Min, etc. If you read through all types of calculation, you will notice that EXCEL does not provide with the Median statistics in the pivot table. Then what should we do if we really want to calculate median statistics? The MEDIAN function is a good option. Before using MEDIAN function, it is better to sort data by SEX and AGE. The left panel in Figure 13.3 shows data copied from range B2:F21. And right panel in Figure 13.3 shows how the range looks after sorting. Figure 13.3 Now let s use MEDIAN function to calculate Median for each subgroup. Formula =MEDIAN(E27:E35) in cell K3 returns It tells that the median weight for female students whose age is between 11 and 15 is 62.5 kg. Figure Pivot tables cannot count unique values Sometimes, we many want to find out how many unique values exist in a range that contains duplicate values. But Pivot tables do not count unique values. Figure 14.1 illustrates on this. You can find that there are 2 students who are 11 years old and 5 students who are 12 years old. But if you want to know the range of age distribution, you have to count one by one manually. Figure 14.1 Fortunately, we have ROWS function which can return the number of rows in the reference range. By entering formula =ROWS(H27:H23) into cell H35, we can get 6. It tells that there are 6 age groups, covering from 11 to 16. All rights reserved to ExcelDemy.com. 13

14 Figure 14.2 And here Figure 14.3 shows you how to count unique values for different sex groups. What we did here is to apply ROWS function to each subgroup. For the female group, enter formula =ROWS(H4:H8) into cell K3. And for the male group, enter formula =ROWS(H10:H15) into cell K9 and it will return 6. Figure No sumifs/countifs/averageifs equivalents for functions such as max or median The SUMIFS function can sum cells meeting multiple criteria. SUMIF function can only apply one criterion while SUMIFS function can be applied on more than one set of criteria with more than one range. The syntax is SUMIFs(sum_range, criteria_range1, criteria1, [criteria_range2,criteria2,].). Sum_range means the range to be summed. Criteria_range and criteria are provided in pairs. Let s look at Figure It has the same sample data as that in Section 13 (pivot table). You can compare this figure against Figure 13.1 to have a deep understanding. The sum range for cell I4 is E3:E21. The first criterion is C3:C21 = F while the second criterion is D3:D21 = 11. The sum of weights for female students who are 11 years old is 51.3 kg. This is the same as that calculated by Pivot table. Figure 15.1 AVERAGEIFS function has similar syntax with SUMIFS. Figure 15.2 shows you how to use AVERAGEIFS function. Figure 15.2 COUNTIFS function is slightly different from SUMIFS function and AVERAGEIFs function. The syntax only consists of different pairs of criteria_range and criteria. The range like sum_range or average_range should be removed. Figure 15.3 shows you how to apply COUNTIFs function. Figure 15.3 These functions are useful, right? However, there is no equivalent function like MEDIANIFs function. To calculate Median for a subgroup, we can use the same approach in section 13 by sorting sample and then apply MEDIAN function. You can refer to section 13 for details. All rights reserved to ExcelDemy.com. 14

15 16. Features available in Excel for Windows that are not available in Excel for Mac Some useful reporting features do not work in Excel for Mac and thus you cannot use them when generating reports for clients who use Mac. Besides these reporting features, there are also other features that are incorporated into Windows version of Excel but are not included in Mac version of Excel. For example, Excel for Windows allows you to set a default location for saving files. It can automatically save draft copies of your workbook as you work to minimize your loss if Excel crashes suddenly. Windows version of Excel can also allow you to customize Quick Access Toolbar. All these three features are not supported by Excel for Mac. Read More: An Excel VBA function with one argument With Excel for Windows, you can preview workbook in three modes: Normal, Page Layout, and Page Break. But with Excel for Mac, you can only use Normal and Page Layout preview mode. As for the print preview, you can see a large print preview of workbook and zoom in or out in windows version of Excel. But for Excel in Mac, you can only see a small print preview which cannot be zoomed. The View Side by Side feature which allows you to compare two workbooks easily is only available in Windows version of Excel. And the Synchronous Scrolling that allows you to scroll through two workbooks at the same time is also missing in Excel for Mac. There are so many features that I cannot include them all. For more details, you can read this article. 17. Cannot quick access to tables in Excel Options dialog box If you open Excel Options dialog box, you will find that there are 10 tabs and each of them is filled with dozens of settings. Locating a specific can waste your considerable time. Figure 11.1 and Figure 11.2 are good illustrations for this issue. 18. Limits of Excel It is well known that Excel has limits. For example, whether the workbook can be opened will be limited by available memory and system resources. The maximum number of rows is 1,048,576 and the maximum number of columns is 16, 384. Here is a summary of all Excel limits. But some limitations are annoying. For instance, the maximum number precision is 15. It means that the number of digits a cell can contain is only 15. Excel will replace digits (after the 15 th digit) with zeros. If you enter into a cell, you will get instead. All rights reserved to ExcelDemy.com. 15

16 19. No Automatic spell checking in Excel Microsoft Word offers automatic spell checking which can check the spelling and grammar of your files. It can highlight the mistakes. However, Excel does not automatically highlight the mistake. But using the Reviews -> Proofing -> Spelling command, you can check out the errors with your Excel files. 20. Excel Crashes easily when running macros Perhaps you have the same experience that EXCEL just crashes when you are running the VBA macro, especially when you use DO WHILE loop or FOR NEXT loop which has to loop for a lot of times (like 1000 or 10,000 times). I used to scrape data from the internet to extract name and contact information of more than 10,000 companies. It took me almost 24 hours in total to finish the work. Initially, it crashed after running the macro for 1 or 2 hours due to bad internet condition. Suddenly, all the work disappeared. I was so frustrated after it crashed the second time. It suddenly occurred to me that I can save the workbook once one loop is finished. After adding the one statement ThisWorkbook.Save at the end of each loop, I have never lost any work due to excel crashing at the wrong time. Download working file Download the working file from the link below. Download-Working-Files.rar 8 SHARES FacebookTwitter Zhiping Yan I am from China and this photo was taken in a classical garden. There are many similar gardens in China, attracting a lot of visitors every year, especially in spring and summer. I was major in Biotechnology. But I took a job as an SAS programmer because I prefer programming. Besides SAS, I also learned Excel VBA in my spare time. It is fantastic to be able to manipulate data, files and even to interact with the internet via programming. This will save me a lot of time. I am keen to learn new things. All rights reserved to ExcelDemy.com. 16

Separate, Split & Remove Substring & Number from Text with Excel Functions & VBA

Separate, Split & Remove Substring & Number from Text with Excel Functions & VBA [Editor s Note: This is a guide on how to separate, split & remove substring & numbers from text using Excel Functions and VBA. Examples of substring functions are CHAR, FIND, LEFT, LOWER, MID, PROPER,

More information

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page Lesson 4: Auditing and Additional Formulas Return to the FastCourse Excel 2007 Level 3 book page Lesson Objectives After studying this lesson, you will be able to: Use 3-D cell references in formulas to

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

Excel Tips. Contents. By Dick Evans

Excel Tips. Contents. By Dick Evans Excel Tips By Dick Evans Contents Pasting Data into an Excel Worksheet... 2 Divide by Zero Errors... 2 Creating a Dropdown List... 2 Using the Built In Dropdown List... 3 Entering Data with Forms... 4

More information

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function.

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function. Today Function The today function: =TODAY() It has no arguments, and returns the date that the computer is set to. It is volatile, so if you save it and reopen the file one month later the new, updated

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

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

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

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced Tutorial 8: Working with Advanced Functions Microsoft Excel 2013 Enhanced Objectives Use the IF function Use the AND function Use the OR function Use structured references in formulas Nest the IF function

More information

Microsoft Excel 2016 Level 1

Microsoft Excel 2016 Level 1 Microsoft Excel 2016 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam s Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-602) and provides references to corresponding coverage

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 2003 Tutorials - Video File Attributes

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

More information

Excel 2007 Tutorials - Video File Attributes

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

More information

Excel Formulas Cheat Sheet

Excel Formulas Cheat Sheet Basic Formulas AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range MAX =MAX(A2:A10) Finds the largest

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

Saving a Workbook That Contains Macros

Saving a Workbook That Contains Macros Procedures LESSON 64: RECDING A MACRO Adding the DEVELOPER Tab to the Ribbon box, click Customize Ribbon. 4. In the Customize the Ribbon list at the right, click to mark Developer. Setting the Macro Security

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

Excel 2010 Tutorials - Video File Attributes

Excel 2010 Tutorials - Video File Attributes Get Familiar with Excel 2010 42.30 2.70 The Excel 2010 Environment 4.10 0.18 Quick Access Toolbar 3.10 0.27 Excel 2010 Ribbon 3.10 0.26 File Tab 3.10 0.28 Home Tab 5.10 0.17 Insert Tab 3.10 0.18 Page Layout

More information

Excel Boot Camp PIONEER TRAINING, INC.

Excel Boot Camp PIONEER TRAINING, INC. Excel Boot Camp Dates and Times: Cost: $250 1/22, 2-4 PM 1/29, 2-4 PM 2/5, 2-4 PM 2/12, 2-4 PM Please register online or call our office. (413) 387-1040 This consists of four-part class is aimed at students

More information

Appendix A Microsoft Office Specialist exam objectives

Appendix A Microsoft Office Specialist exam objectives A 1 Appendix A Microsoft Office Specialist exam objectives This appendix covers these additional topics: A Excel 2013 Specialist exam objectives, with references to corresponding coverage in ILT Series

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

Spreadsheet Applications Test

Spreadsheet Applications Test Spreadsheet Applications Test 1. The expression returns the maximum value in the range A1:A100 and then divides the value by 100. a. =MAX(A1:A100/100) b. =MAXIMUM(A1:A100)/100 c. =MAX(A1:A100)/100 d. =MAX(100)/(A1:A100)

More information

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

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

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

IF 1: 2: INDEX MATCH MATCH

IF 1: 2: INDEX MATCH MATCH How to Excel Part 3 Contents Exercise 1: Advanced IF formulas... 3 Exercise 2: INDEX MATCH MATCH... 6 Data validation... 7 Exercise 3 Recording Macros... 8 Setting up a Personal workbook... 10 Adding a

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

Excel Tutorials - File Size & Duration

Excel Tutorials - File Size & Duration Get Familiar with Excel 46.30 2.96 The Excel Environment 4.10 0.17 Quick Access Toolbar 3.10 0.26 Excel Ribbon 3.10 0.26 File Tab 3.10 0.32 Home Tab 5.10 0.16 Insert Tab 3.10 0.16 Page Layout Tab 3.10

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

Attending delegates will be presented with a Certificate of Attendance upon completion of training.

Attending delegates will be presented with a Certificate of Attendance upon completion of training. Excel Core 2013 This beginners Microsoft Excel course will introduce you to the basic skills needed to use Excel. It starts with the key skills of how to create Excel workbooks and worksheets and navigate

More information

How to Reduce Large Excel File Size (Ultimate Guide)

How to Reduce Large Excel File Size (Ultimate Guide) Handling a large file is important as it takes a huge amount of time to transfer. A large file takes too much time to open. Any kind of change in a large file takes a long time to update. So, reducing

More information

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example This exercise is a follow-up to the MPA admissions example used in the Excel Workshop. This document contains detailed solutions

More information

OTEC 1822 Microsoft Excel

OTEC 1822 Microsoft Excel South Central College OTEC 1822 Microsoft Excel Common Course Outline Course Information Description Instructional Level Total Credits 4.00 Total Hours 64.00 Types of Instruction This course prepares students

More information

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

More information

Index. calculated columns in tables, switching on, 58 calculation options (manual and automatic), 132 case sensitive filter, implementing, 37

Index. calculated columns in tables, switching on, 58 calculation options (manual and automatic), 132 case sensitive filter, implementing, 37 Index # #All special item, 57 #Data special item, 56 #Header special item, 57 #ThisRow special item, 57 #Totals special item, 57 A absolute and relative cell references, 110 accept/reject changes to a

More information

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font Excel 2013 Shortcuts My favorites: Ctrl+C copy (C=Copy) Ctrl+X cut (x is the shape of scissors) Ctrl+V paste (v is the shape of the tip of a glue bottle) Ctrl+A - or the corner of worksheet Ctrl+Home Goes

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

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

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation BASIC EXCEL SYLLABUS Section 1: Getting Started Unit 1.1 - Excel Introduction Unit 1.2 - The Excel Interface Unit 1.3 - Basic Navigation and Entering Data Unit 1.4 - Shortcut Keys Section 2: Working with

More information

Chapter 7 Notes Chapter 7 Level 1

Chapter 7 Notes Chapter 7 Level 1 Chapter 7 Notes Chapter 7 Level 1 Page 426 Open the Alaska Retailers file from your Chapter 7 data files in Moodle and save it on your computer, either in your files or on your desk top. Just remember

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

MICROSOFT EXCEL 2003 LEVEL 3

MICROSOFT EXCEL 2003 LEVEL 3 MICROSOFT EXCEL 2003 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using the

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

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

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

More information

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32 TABLE OF CONTENTS Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14 Creating an Excel Workbook 14 Examining the Excel Environment 15 Opening an Existing Workbook 19 Navigating a Worksheet

More information

Chapter 13. Creating Business Diagrams with SmartArt. Creating SmartArt Diagrams

Chapter 13. Creating Business Diagrams with SmartArt. Creating SmartArt Diagrams Chapter 13 Creating Business Diagrams with SmartArt Office 2007 adds support for 80 different types of business diagrams. These diagrams include list charts, process charts, cycle charts, hierarchy and

More information

Corporate essentials

Corporate essentials Microsoft Office Excel 2016, Corporate essentials A comprehensive package for corporates and government organisations Knowledge Capital London transforming perfomance through learning MS OFFICE EXCEL 2016

More information

Prepared By: Graeme Hilson. U3A Nunawading

Prepared By: Graeme Hilson. U3A Nunawading 0 Prepared By: Graeme Hilson U3A Nunawading - 2015 1 CONTENTS This Course Page 3 Reference Material Page 3 Introduction page 3 Microsoft Excel Page 3 What is a Spreadsheet Page 4 Excel Screen Page 4 Using

More information

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 2 Using Functions, Creating Tables, and Managing Large Workbooks Use SUM and Statistical Functions The SUM function is a predefined formula

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

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College Excel 101 DJ Wetzel Director of Financial Aid Greenville Technical College Introduction Spreadsheets are made up of : Columns identified with alphabetic headings Rows - identified with numeric headings.

More information

Excel Comics. Why read boring ebooks! Volume 1. Page 1 of 21

Excel Comics. Why read boring ebooks! Volume 1. Page 1 of 21 Excel Comics Why read boring ebooks! Volume 1 Page 1 of 21 Contents 1) VLOOKUP lifeblood of an Excel user!... 3 2) Battle of Nested IFs vs. VLOOKUP with TRUE (or 1) Who wins?... 4 3) 2-D VLOOKUP will give

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

All Excel Topics Page 1 of 11

All Excel Topics Page 1 of 11 All Excel Topics Page 1 of 11 All Excel Topics All of the Excel topics covered during training are listed below. Pick relevant topics and tailor a course to meet your needs. Select a topic to find out

More information

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning Quick Reference Tables Preface EXCEL 2013 LESSON 1: EXPLORING EXCEL 2013 Presenting Excel 2013 Starting Excel Windows 7 Windows 8 Exploring the Excel Program Window Using Worksheets and Workbooks Mousing

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

Getting the Most from your Microsoft Excel

Getting the Most from your Microsoft Excel Getting the Most from your Microsoft Excel Anne Del Pizzo PATHS, LLC What we will cover What s new in 2007/2010 Conditional formatting Sparklines Pivot Table Slicers Functions Macros Pivot Tables 1 What

More information

12 BASICS OF MS-EXCEL

12 BASICS OF MS-EXCEL 12 BASICS OF MS-EXCEL 12.1 INTRODUCTION MS-Excel 2000 is a Windows based application package. It is quite useful in entering, editing, analysis and storing of data. Arithmetic operations with numerical

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

Basic Excel. Helen Mills OME-RESA

Basic Excel. Helen Mills OME-RESA Basic Excel Helen Mills OME-RESA Agenda Introduction- Highlight Basic Components of Microsoft Excel Entering & Formatting Data, Numbers, & Tables Calculating Totals & Summaries Using Formulas Conditional

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

Microsoft Excel 2016 Training Programme

Microsoft Excel 2016 Training Programme No. 3 High Street, Castries, Saint Lucia (758) -451-8918 / (758) -519-1898 www.lightsparc.com Microsoft Excel 2016 Training Programme Audience: This course is designed for new users of Excel, or those

More information

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Submitted by Jess on Mon, 02/24/2014-00:50 Have you ever wanted to sum a column of values but want to do it only

More information

Returns the value of a specified cell or array of cells within an array.

Returns the value of a specified cell or array of cells within an array. Microsoft Excel 2013 Functions to Retrieve Data VLookup Index Match SumProduct SumIf and SumIfs Searches for a value in the leftmost column of a table, and then returns a value in the same row from a column

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

Table of Contents COPYRIGHTED MATERIAL. Introduction Book I: Excel Basics Chapter 1: The Excel 2013 User Experience...

Table of Contents COPYRIGHTED MATERIAL. Introduction Book I: Excel Basics Chapter 1: The Excel 2013 User Experience... Table of Contents Introduction... 1 About This Book...1 Foolish Assumptions...2 How This Book Is Organized...3 Book I: Excel Basics...3 Book II: Worksheet Design...3 Book III: Formulas and Functions...4

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

Excel 2010 Macro Vba For Loops Break Nested

Excel 2010 Macro Vba For Loops Break Nested Excel 2010 Macro Vba For Loops Break Nested If you want to continue to show page breaks after your macro runs, you can set the The With statement utilized in this example tells Excel to apply all the If

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

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

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING EXCEL + POWERPOINT Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING KEYBOARD SHORTCUTS NAVIGATION & SELECTION SHORTCUTS 3 EDITING SHORTCUTS 3 SUMMARIES PIVOT TABLES

More information

Using Advanced Formulas and 9 Securing Workbooks

Using Advanced Formulas and 9 Securing Workbooks Using Advanced Formulas and 9 Securing Workbooks LESSON SKILL MATRIX Skill Exam Objective Objective Number Using Formulas to Conditionally Use a series of conditional 5.4.3 Summarize Data logic values

More information

PIVOT TABLES IN MICROSOFT EXCEL 2016

PIVOT TABLES IN MICROSOFT EXCEL 2016 PIVOT TABLES IN MICROSOFT EXCEL 2016 A pivot table is a powerful tool that allows you to take a long list of data and transform it into a more compact and readable table. In the process, the tool allows

More information

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

More information

Excel 2010 Formulas Not Work In 2003 Copying Down Correctly

Excel 2010 Formulas Not Work In 2003 Copying Down Correctly Excel 2010 Formulas Not Work In 2003 Copying Down Correctly Invest a few minutes and learn how to correctly use relative and absolute cell How relative and absolute cell references work in conditional

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

MICROSOFT EXCEL 2002 (XP): LEVEL 3

MICROSOFT EXCEL 2002 (XP): LEVEL 3 MICROSOFT EXCEL 2002 (XP): LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using

More information

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns.

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns. Table of contents 1. Excel in English 2. Important information 3. LAYOUT 4. Format Painter 5. Format Painter 6. Fix columns 7. Fix columns 8. Create a grid 9. Create a grid 10. Create a numeric sequence

More information

Downloading other workbooks All our workbooks can be downloaded from:

Downloading other workbooks All our workbooks can be downloaded from: Introduction This workbook accompanies the computer skills training workshop. The trainer will demonstrate each skill and refer you to the relevant page at the appropriate time. This workbook can also

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

Customizing the Excel 2013 program window. Getting started with Excel 2013

Customizing the Excel 2013 program window. Getting started with Excel 2013 Customizing the Excel 2013 program window 1 2 Getting started with Excel 2013 Working with data and Excel tables Creating workbooks Modifying workbooks Modifying worksheets Merging and unmerging cells

More information

AGB 260: Agribusiness Data Literacy. Advanced Functions and Logic

AGB 260: Agribusiness Data Literacy. Advanced Functions and Logic AGB 260: Agribusiness Data Literacy Advanced Functions and Logic Useful Chapters in the Textbook Regarding this Lecture Chapter 11 Chapter 13 Chapter 14 Some of the other functions in this chapter are

More information

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO Chapter 1 : All about printing sheets, workbook, charts etc. from Excel VBA - blog.quintoapp.com Hello Friends, Hope you are doing well!! Thought of sharing a small VBA code to help you writing a code

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

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

Excel 2016: Core Data Analysis, Manipulation, and Presentation; Exam

Excel 2016: Core Data Analysis, Manipulation, and Presentation; Exam Microsoft Office Specialist Excel 2016: Core Data Analysis, Manipulation, and Presentation; Exam 77-727 Successful candidates for the Microsoft Office Specialist Excel 2016 certification exam will have

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

More information

Excel Forecasting Tools Review

Excel Forecasting Tools Review Excel Forecasting Tools Review Duke MBA Computer Preparation Excel Forecasting Tools Review Focus The focus of this assignment is on four Excel 2003 forecasting tools: The Data Table, the Scenario Manager,

More information

Microsoft Office Excel Create a worksheet group. A worksheet group. Tutorial 6 Working With Multiple Worksheets and Workbooks

Microsoft Office Excel Create a worksheet group. A worksheet group. Tutorial 6 Working With Multiple Worksheets and Workbooks Microsoft Office Excel 2003 Tutorial 6 Working With Multiple Worksheets and Workbooks 1 Create a worksheet group A workbook is a collection of worksheets. You may want to work with the worksheets within

More information

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with VLOOKUP vs. SUMIFS Battle of the Excel Heavyweights made with Table of Contents 1. What do we mean by Battle? 2. VLOOKUP: Range Lookups 3. SUMIFS: Overview 4. Multi-Column Lookup with VLOOKUP and SUMIFS

More information

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands.

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands. Quick Start Guide Microsoft Excel 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Add commands to the Quick Access Toolbar Keep favorite commands

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

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering Ahmad Al-Rjoub Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering Objectives Evaluate a single condition using the IF function Evaluate multiple conditions using the AND function

More information

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2 i TABLE OF CONTENTS 1 INTRODUCTION 1 1.1 Method 1 1.2 Software and other settings 2 1.3 Exercise files 2 2 MULTIPLE WORKSHEETS 3 2.1 Working with multiple worksheets 3 Adding a worksheet 4 Deleting a worksheet

More information

Using Advanced Formulas

Using Advanced Formulas 10 Using Advanced Formulas LESSON SKILL MATRIX Skills Exam Objective Objective Number Using Formulas to Conditionally Summarize Data Adding Conditional Logic Functions to Formulas Using Formulas to Modify

More information