Streamlining Your Work with Macros. Workshop Manual

Size: px
Start display at page:

Download "Streamlining Your Work with Macros. Workshop Manual"

Transcription

1 Microsoft Excel Advanced Workshop Streamlining Your Work with Macros Workshop Manual Presented by David Newbold, Jennifer Tran and Katie Spencer 06/23/11 1

2 Excel 401 Macro Exercise Workbook Class Files > IC Exercises > Excel 401 Advanced > Excel 401 Exercises 2

3 Contents Introduc on to Excel Macros... 4 The Developer Tab... 6 Crea ng VBA Sub Procedure Macros by Recording... 8 Steps for Assigning/Edi ng Your Macro Shortcut Key... 9 Examining and Tes ng Your Macro Absolute vs Rela ve Recording Assigning a Macro to a Bu on Saving Workbooks that Contain Macros Storing Macros in Your Personal Macro Workbook Dele ng Macros Recording Macro Exercises Reading Your VBA Code Understanding VBA Code through Prac ce Debugging Your VBA Code Crea ng and Reading Comments in VBA Code Prac cing with VBA VBA Func on Procedures

4 Introduc on to Excel Macros Visual Basic for Applica ons (VBA) Macro Defini on: A macro is a sequence of instruc ons that automates some aspect of Excel so that you can work more efficiently and with fewer errors. The example at the right inserts and formats today s date. Program Language: In Microso Office, macros are composed using a programming tool called Visual Basic for Applica ons, or VBA for short. There are Two Types of Macros: VBA Sub Procedures A Sub procedure is a group of VBA statements that performs an ac on with Excel. It is a series of commands that either the user or another macro can execute. VBA Func on Procedures A VBA Func on procedure is a group of VBA statements that performs a calcula on and returns a single value. Can be executed by another VBA procedure or used in worksheet formulas Func on procedures can only be created manually 4

5 Why Use Macros? They automate repetitive tasks, thus saving time and improving efficiency. Make difficult tasks easier Provide a means of extending the usefulness of applications Can assist people in completing forms Some Applications for Macros Insert boiler plate text Automate a procedure you perform frequently Create custom commands Create a simplified front end for users who do not know much about Excel Expand formulas and worksheet functions 5

6 The Developer Tab Because Office 2010 does not display the Developer tab by default, you must enable it using the following procedure: To enable the Developer tab On the File tab, choose Options to open the Excel Options dialog box. Click Customize Ribbon on the left side of the dialog box. Under Choose commands from on the left side of the dialog box, select Popular Commands. Under Customize the ribbon on the right side of the dialog box, select Main tabs, and then select the Developer check box. Click OK. 6

7 Developer Tab Func ons Visual Basic: Opens the Visual Basic Editor Macros: Opens macro dialogue box containing list of macros Record Macro: Ini ates the macro recording process Use Rela ve References: Causes macros being recorded to func on in either absolute or rela ve mode Macro Security: Ac vates Trust Center in which various levels of security can be selected Add Ins: Adds a range of tools and func ons COM Add Ins: Allows for interac on with other applica ons Insert: Inserts bu ons, lists, boxes, labels, etc, for crea ng forms and Ac ve X controls Design Mode: Used for designing forms and media Proper es: Lists of pre set proper es for use in VBA code View Code: Displays code in VBA Editor Run Dialog: Not per nent to this class Document Panel: Stores informa on about the ac ve document 7

8 Crea ng VBA Sub Procedure Macros by Recording 1. Select Developer Tab 2. Click on Record Macro 3. Record Macro Dialogue Box Opens 4. Enter a name (no Spaces or non alpha numeric characters) 5. Enter a Shortcut Key (le er from A Z) 6. Store Macro in: 7. Descrip on of macro 8. Press OK 9. Perform the func ons that you want the macro to perform (see A F at right) 10. Click on Stop Recording 11. To ini ate the macro press Ctrl > Shi > Shortcut Key Steps in Crea ng Macro InsertDate Here are the Steps we used to insert and format the current date and the corresponding code: A. Select right adjacent cell B. On the Formulas in Date & Time category, Insert current date using Today() formula (See B below) C. Center text in cell D. Change background color to blue E. Change font color to white F. Change font to Ariel Rounded MT Bold B 11 8

9 Steps for Assigning/Edi ng Your Macro Shortcut Key When you record a macro, Excel will automa cally give you the op on to assign a shortcut key for your macro. Once you ve assigned your shortcut key, you will see in your VBA code a comment that tells you what the assigned shortcut key is (pictured in the image on the bo om right). Changing the keyboard shortcut in the comment code will not make any actual change to the ini ally assigned keyboard shortcut. Also, when crea ng your own macro with VBA code, this shortcut key assignment dialog box will not pop up and give you the op on to assign a shortcut key. If there is ever a me you need to assign or edit your shortcut key, you will need to do the following steps: 1. Go to the Developer Tab 2. Click the Macro Bu on 3. Select the name of the macro you either want to 1. assign a shortcut key to, or 2. edit its exis ng shortcut key 4. Click the Op ons bu on in the Macro dialog box 5. Assign or edit your shortcut key in the Macro Op ons dialog box 9

10 Examining & Tes ng Your Macro From the Developer tab select View Macro, and the box pictured below will appear Here are the Steps we used to insert and format the current date and the corresponding code: Select right adjacent cell Insert current date using Today() formula from preset formulas in Date & Time category, Formula ribbon Center text in cell Change background color to Yellow Change font to Ariel Rounded MT Bold Change color of font to Light Blue End Macro Tes ng To test your macro, use the keyboard shortcut you specified, in this case: Ctrl+Shi +G. If the macro fails to run, re examine your macro in order to find the error in the code. 10

11 Absolute vs Rela ve Recording You can either record a macro in Absolute mode, meaning only the cells you s pulate will be included in the macro, or you can record your macro in Rela ve mode, which means that wherever the star ng cell happens to be is where the macro will begin. Absolute is the default. To switch from Absolute to Rela ve, click on the Use Absolute icon in the Code sec on of the Developer ribbon. Click on it again to return to Absolute mode. Use the Rela ve mode when you want your macro to start from anywhere in your workbook; use the Absolute mode when you want your macro only to start from a par cular cell every me you run it. Assigning a Macro to a Bu on You can ini ate a macro using a bu on and other types of graphics that are mainly designed as form controls. To assign a macro to a bu on: From the Insert bu on, under Form Controls, select the bu on Draw the bu on where you want it situated The Assign Macro dialogue box appears Select the macro you want the bu on to ini ate Click OK Revise the name on the top of the bu on and modify font proper es as necessary De select and test You can also record a new macro from the Assign Macro bu on dialogue box. 11

12 Saving Workbooks that Contain Macros Workbooks that contain one or more macros need to be saved as XLSM files rather than the default XLSX. If you save the file in the usual format, the macro will not be saved. When first saving a file that contains a macro, Excel will provide a message advising you to save the file as an XLSM. Click on the Save as type list and select Excel Macro Enabled Template, then press OK. Storing Macros in your Personal Macro Workbook When you want to use a macro in more than one workbook, you can store it in your Personal Macro Workbook. When you press the Record Macro bu on and the Record Macro dialogue box appears, under Store Macro In, select Personal Macro Workbook. Dele ng Macros To delete a macro, open the Macro dialog box (Developer tab > Macros), select the macro you want to delete, then press the Delete bu on (second from bo om in bu on list) In response to the ques on, answer Yes 12

13 Recording Macro Exercises On the following pages are a series of exercises designed to provide prac ce in the principles and methods of recording macros. These macros should be performed using the Excel macro worksheets which may be found in the Excel 401 directory. Each exercise provides step by step direc ons along with an illustra on of the completed dialog box, the code which comprises the macro, and an image of the results of the macro, the way in which the finished product should look. If the macro doesn t run or look like the illustra on, compare the code of your macro, with that on the page and/or go to Page 23 and follow the steps for debugging macro code. 13

14 Example 1 Insert and Format UCSD Name Text Select the Record Macros bu on in the Developer Tab. Fill in the Record Macro box as per the example to the right and press OK Select Range=A1 E1 Select = Merge & Center Select Typeface =Ariel Select Font Size = 16 pt Select Font Color = White Select Background Color= Blue Insert Text = University of California ~ San Diego Click on the Stop Macro bu on in the Developer Tab Press Ctrl > Shi and the Shortcut Key to test your macro If your macro doesn t run properly, see Page 22 14

15 Example 2 Insert and Format Current Select the Record Macros bu on in the Developer Tab. Fill in the Record Macro box as per the example to the right and press OK Select Current Date Formula = TODAY() Select Cell = Center text Select Font = Tekton Pro Ext Select Font Size = 11 pt Select Background color = Burgandy Select Font Color = White Select Font = Bold Select border = Medium Move cursor = 2 cells Click on the Stop Macro bu on in the Developer Tab Press Ctrl > Shi and the Shortcut Key to test your macro If your macro doesn t run properly, see Page 22 15

16 Example 3 Change Number to Date Select the Record Macros bu on in the Developer Tab. Fill in the Record Macro box as per the example to the right and press OK Select cell in which number is located Right click and select Format Select Date Format Format text and background Click on the Stop Macro bu on in the Developer Tab Press Cntrl > Shi and the Shortcut Key to test your macro If your macro doesn t run properly, see Page 22 16

17 Example 4 Eliminate Decimal Places Select the Record Macros bu on in the Developer Tab. Fill in the Record Macro box as per the example to the right and press OK Select Number with decimal Right click on number Select Format Select Number Set number of decimal places to 0 Press OK Center and bold number Click on the Stop Macro bu on in the Developer Tab Press Cntrl > Shi and the Shortcut Key to test your macro If your macro doesn t run properly, see Page 22 17

18 Example 5 Change Decimal to a Percentage Select the Record Macros bu on in the Developer Tab. Fill in the Record Macro box as per the example to the right and press OK Select decimal Right click on decimal Select Format Select percentage Press OK Center, color and bold percentage Click on the Stop Macro bu on in the Developer Tab Press Cntrl > Shi and the Shortcut Key to test your macro If your macro doesn t run properly, see Page 22 18

19 Example 6 Selec ng and Coloring Lines Select the Record Macros bu on in the Developer Tab. Fill in the Record Macro box as per the example to the right and press OK Select Find and Replace Select Go To Special Select Blanks Press OK Select Fill Color Green Select Column D Select Go To Special Select Formulas Select OK Select Fill Color Green Select Column F Select Condi onal Forma ng from Home Tab Select Manage Rules Select New Rule Select Only Cells That Contain Select Specific Text Select Containing Type Total Select Format Select Fill Select Green Press OK Press OK Click on the Stop Macro bu on in the Developer Tab Press Cntrl > Shi and the Shortcut Key to test your macro If your macro doesn t run properly, see Page 22 19

20 Reading Your VBA Code The basic structure of a VBA code is: Object.Method or Object.Method Parameter Object: a cell, range, row, column, or an en re Excel workbook; objects can also be collec ons of cells, rows, columns, or ranges Method: the ac on you want to perform on your object TIP: If you do not know whether or not to use a method or a property code, you can use your macro recorder to record a small macro and figure out that way which one you will need, method or property. Parameter: specifies how to perform the method on the object; each method has a different set of parameters Another way to think about the Object.Method structure is to think about English grammar Examine the table below: VBA CODE (Object.Method Parameter) Range("A1:E1").Select Range("A1:E1").Copy Des na on:=range( F14:G14 ) PLAIN ENGLISH (Noun.Verb Adverb) Ball( Basketball ).Kick Ball( Basketball ).Kick Direc on:=le, Force:=Hard VBA Commands You Will See Below are some basic VBA commands. Take me to review these commands so that you may get a be er understanding of VBA code. As you review these commands, remember to keep in mind the Object.Method or Object.Method Parameter structure of VBA coding. If you want a be er understanding of what each method or parameter does, you can click func on key F1 (explained in detail on page 20). How it s wri en in code: What it does: Ac vecell.range("a1:e1").select Highlights (or selects) the range from A1 at the upper le hand corner through E1 at the lower bo om right hand corner of the range Selec on.font.bold = True Changes the font property of the selected cell, making it bold Ac vecell.formular1c1 = "=SUM(R2C:R[ 1]C)" Sum all values beginning in row two, above, and in the same column as, the ac ve cell FinalRow = Cells(Rows.Count,1).End(xlUp).Row Count the number of rows that exist in column A (or 1) and store that number in the FinalRow variable 20

21 Understanding VBA Code through Prac ce Pressing F1 on your keyboard opens the Excel Help screen (pictured in the image to the right). In VBA, this help screen will detail all the informa on you will need to be er understand your code. Excel s Help screen will tell you what type of code it is (i.e. method, func on, parameter, or property), and display the help informa on accordingly. The help window will provide the code s syntax, walk you through all of it s available arguments, and give you several sample codes at the bo om of the window, under the Example heading. How to Access Excel s Help Window: Open the VBA Editor To open the VBA Editor, go to the Developer Tab > Macro Bu on > Select the name of your Macro > Edit Place your cursor inside the code you want more informa on on (view image to the right) Press F1 on your keyboard Prac ce Using F1 with These Codes: Just type these codes into the VBA Editor, place your cursor inside the method, func on, parameter, or property commands, and hit F1 to analyze their data in the Excel Help window. Basic Workbooks.OpenText Range( B4 ).End Loops For i = 2 To 10 Next i For Each cell in Range( A1 ).CurrentRegion.Resize(,1) Next cell **The help screen does not display any informa on for VBA objects. IF If cell.value = Total Then cell.resize(1,8).font.bold = True End If If Ac vecell.value = Fruit Then Ac vecell.resize(1,3).font.colorindex=3 Else If Ac vecell.value = Vegetable Then Ac vecell.resize(1,3).font.colorindex=50 End If 21

22 R1C1 Reference Style and What it Means in Code When you begin working with macros, you will begin no cing code that uses R1C1 reference styles. R1C1 is the standard referencing code used in Excel macros because it is what Excel was ini ally developed with before it R1C1 allows for rela ve reference therefore more beneficial to use in macro code vs a1 ref style 22

23 Find Out What s Going On in Your Code Using the DEBUGGING MODE to Step Through Each Line You can ac vate the debug mode by: 1. Going to the DEBUG menu in the VBA Editor Window and clicking Step Into or 2. Hi ng the F8 func on key on your keyboard Once you step into your code, you will see the line that will be executed, highlighted in yellow (as shown below); when you hit your F8 hotkey, or go to Debug and Step Into again, you will see this line of code execute, and the yellow highlight will move to your next line of code. When you step through your code, you will quickly realize that a lot of the code you have recorded using your Macro Recorder is scrap code that does nothing, and contributes nothing to your macro s end result. When you find these types of codes, you can delete them by highligh ng the line and hi ng the delete or backspace bu on on your keyboard. Once you delete your code, you will see a pop up such as the image to the right. Click OK. Once you click OK, you will need to restart your debugging process again by hi ng F8 or by going to Debug > Step Into. Tip: If you have your Excel window open on the le half of your monitor, and your VBA Editor window open on the right half of your monitor, you can view what each line of code is doing, and find out also which lines of code do nothing. 23

24 Crea ng and Reading Comments in VBA Code When crea ng code, it is o en a good idea to include comments next to, above, or below the code you have just created. Making this common prac ce will: 1. Help you review your code at a later date and understand what is happening so that you may tweak it if needed 2. Help the colleagues you send your macro to understand what your macro is doing, and allow them to locate a specific code line to change, if desired Comments are created by first typing in the apostrophe key. For example: This is a comment in VBA Code This is not a comment in VBA Code Once this is done, anything you type in a er the apostrophe will be a comment. Once you navigate away from the line, it will turn green (pictured to the right). Any green text in the VBA Editor window are comments. Use the comments in the Macros Forma ngmacro_with_comments() and TotalValuesGreen_with_Comments() to read and understand what ac on each line of code is performing. 24

25 Prac cing with VBA TotalValuesGreen Sub Procedure Before you can make changes to your code, you need to open the VBA Editor Window. The steps to open the VBA Editor Window are described on page 7. Suggested Change 1 Change the ColorIndex to something of your choosing 2 Change the column number in the IF command to 4 and the test value from 0 to Change the values of the Resize command to 2 (row) and 8 (column) Change in Code Cells(i, 1).Resize(1, 6).Interior.ColorIndex = 32 If Cells(i, 4).Value = 100 Then Cells(i, 1).Resize(2, 8).Interior.ColorIndex = 4 Original Code: Sub TotalValuesGreen() FinalRow = Cells(Rows.Count, 1).End(xlUp).Row For i = 2 To FinalRow If Cells(i, 5).Value = 0 Then Cells(i, 1).Resize(1, 6).Interior.ColorIndex = 4 End If Next i End Sub 4 Add or delete rows of information to get a clearer understanding of the FinalRow command The 56 Color Codes of VBA 25

26 Prac cing with VBA Forma ngmacro Sub Procedure Before you can make changes to your code, you need to open the VBA Editor Window. The steps to open the VBA Editor Window are described on page 7. Suggested Change 1 Make the value Total appear in cell D16 instead of A14, and change Total to SUM ALL 2 Bold rows 2 through 11 instead of rows 1 and 14 3 Create a code that count s the values in column 2 and places that value in cell B14 4 Make the For Next Loop run through row 20 and search for the value 0 and change the color of the highlighted rows to RED (refer to page 22 for a color index) Change in Code Range( D16").Select Selec on.formular1c1 = SUM ALL" Rows( 2:11").Font.Bold = True Rows("14:14").Font.Bold = True Range( B14").Select Selec on.formular1c1 = "=COUNT(R[ 12]C:R[ 1]C)" For i = 2 To 20 If Cells(i, 6).Value = 0 Then Cells(i, 8).Value = "Service Revenue" Cells(i, 1).Resize(1, 8).Interior.ColorIndex = 3 End If Next i Original Code: Sub Forma ngmacro() Range("A1").Select Selec on.end(xldown).select Range("A14").Select Selec on.formular1c1 = "'Total" Range("E14").Select Selec on.formular1c1 = "=SUM(R[ 12]C:R[ 1]C)" Selec on.autofill Des na on:=range("e14:g14"),_ Type:=xlFillDefault Rows("1:1").Font.Bold = True Rows("14:14").Font.Bold = True Cells.Select Selec on.columns.autofit For i = 2 To 10 If Cells(i, 6).Value > 0 Then Cells(i, 8).Value = "Service Revenue" Cells(i, 1).Resize(1, 8).Interior.ColorIndex = 4 End If Next i End Sub 26

27 VBA Func on Procedures VBA Func on Procedures (VBA Func ons) A Func on procedure is a series of Visual Basic statements enclosed by the words Func on and End Func on (see below). Difference between Sub and Func on Procedures: Func on can only return a single value (numerical or text string) Func on starts with the word Func on instead of Sub Func on procedures can only be created manually Func ons can be executed by The Insert Func on command Another VBA procedure or Being included in a worksheet formula Func on procedures do not appear in macro list, but may be found in the Insert Func on list under User Defined Macros The value returned by a func on is always assigned to the func on s name In the example above, a VBA Func on Procedure called NumSign has been coded and will insert the word zero when num=0, posi ve when num is a posi ve number, and the word nega ve when num = a nega ve number is entered. The macro is executed when the Insert Func on command in the Formula ribbon is invoked and a number is entered, as above. 27

28 VBA Func on Procedures Advantages of Func on Procedures You can greatly simplify your formulas by making them shorter; shorter formulas are more readable and easier to work with You can write func ons to perform opera ons that would otherwise be impossible. How to write a Func onal Procedure (Use NumSign as example) 1. Ac vate the VB Editor (Developer > Visual Basic) 2. Select the Module or Sheet # in the Project window. 3. Choose Insert Module to insert a VBA module. Or you can use an exis ng code module. However, it must be a standard VBA module. 4. Enter the keyword Func on followed by the func on s name and a list of the arguments (if any) in parentheses. If the func on doesn t use an argument, the VB Editor adds a set of empty parentheses. 5. Insert an apostrophe and then a descrip on of the macro 6. Insert the VBA code that performs the work and make sure that the variable corresponding to the func on s name has the appropriate value when the func on ends. This is the value that the func on returns. 28

29 29

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

Macros enable you to automate almost any task that you can undertake

Macros enable you to automate almost any task that you can undertake Chapter 1: Building and Running Macros In This Chapter Understanding how macros do what they do Recording macros for instant playback Using the relative option when recording macros Running the macros

More information

Macros enable you to automate almost any task that you can undertake

Macros enable you to automate almost any task that you can undertake Chapter 1: Building and Running Macros In This Chapter Understanding how macros do what they do Recording macros for instant playback Using the relative option when recording macros Running the macros

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

PASSWORD SHIELD. User Manual

PASSWORD SHIELD. User Manual PASSWORD SHIELD User Manual Table of Contents Welcome...3 Compa bility...3 Installa on Guide and Database Crea on...4 Registra on...7 Workspace...8 Control Bu ons...9 File...12 Edit...13 View...14 Tools...15

More information

1) Merge the cells that contain the title and center the title

1) Merge the cells that contain the title and center the title Supplies: You will need a storage location to save your spreadsheet for use in Session 2. You will need the 2 handouts pertaining to Session 1 Instructions: Follow the directions below to create a budget

More information

Microsoft Excel 2007 Macros and VBA

Microsoft Excel 2007 Macros and VBA Microsoft Excel 2007 Macros and VBA With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features of Excel

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

1. Website/Pages/Stripes/Items/Elements

1. Website/Pages/Stripes/Items/Elements Contents 1. Website/Pages/Stripes/Items/Elements... 2 2. Click & Edit, Mix & Match... 3 3. Adding a Stripe... 4 4. Managing Stripes... 5 5. Adding a Page... 8 6. Managing Pages and Menus... 9 7. Adding

More information

Microsoft Excel Level 2

Microsoft Excel Level 2 Microsoft Excel Level 2 Table of Contents Chapter 1 Working with Excel Templates... 5 What is a Template?... 5 I. Opening a Template... 5 II. Using a Template... 5 III. Creating a Template... 6 Chapter

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Introduction to Excel

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

More information

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

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

More information

EXERCISE 2: GETTING STARTED WITH FUSION

EXERCISE 2: GETTING STARTED WITH FUSION Exercise Objec ves In this exercise, you ll be using the fully prepared example data to explore the basics of FUSION. Prerequisites Successful comple on of Exercise 1 (Download and Install FUSION and the

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

Getting started 7. Writing macros 23

Getting started 7. Writing macros 23 Contents 1 2 3 Getting started 7 Introducing Excel VBA 8 Recording a macro 10 Viewing macro code 12 Testing a macro 14 Editing macro code 15 Referencing relatives 16 Saving macros 18 Trusting macros 20

More information

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Control Shortcut s Ctrl + PgDn Ctrl + PgUp Ctrl + Shift + & Ctrl + Shift_ Ctrl + Shift + ~ Ctrl + Shift + $ Ctrl + Shift + % Ctrl +

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

Civil Engineering Computation

Civil Engineering Computation Civil Engineering Computation First Steps in VBA Homework Evaluation 2 1 Homework Evaluation 3 Based on this rubric, you may resubmit Homework 1 and Homework 2 (along with today s homework) by next Monday

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

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word "Qtr3"?

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word Qtr3? Choose The Correct Answer: 1) Study the highlighted cells in the image below and identify which of the following represents the correct cell address for these cells: a) The cell reference for the selected

More information

Preview from Notesale.co.uk Page 2 of 61

Preview from Notesale.co.uk Page 2 of 61 Modify a table Applying styles to tables; banding rows and columns; inserting total rows; removing styles from tables Filter and sort a table Filtering records; sorting data on multiple columns; changing

More information

Basic Excel 2010 Workshop 101

Basic Excel 2010 Workshop 101 Basic Excel 2010 Workshop 101 Class Workbook Instructors: David Newbold Jennifer Tran Katie Spencer UCSD Libraries Educational Services 06/13/11 Why Use Excel? 1. It is the most effective and efficient

More information

This chapter is intended to take you through the basic steps of using the Visual Basic

This chapter is intended to take you through the basic steps of using the Visual Basic CHAPTER 1 The Basics This chapter is intended to take you through the basic steps of using the Visual Basic Editor window and writing a simple piece of VBA code. It will show you how to use the Visual

More information

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

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

More information

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart Microsoft Excel 2010 Chapter 1 Creating a Worksheet and an Embedded Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Copy the contents of

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

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen.

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen. Excel is a spreadsheet application that allows for the storing, organizing and manipulation of data that is entered into it. Excel has variety of built in tools that allow users to perform both simple

More information

1 Welcome to Microsoft Excel 2007

1 Welcome to Microsoft Excel 2007 1 Welcome to Microsoft Excel 2007 The Excel Window With Office 2007, Microsoft has abandoned the interface consisting of a menu and a collection of toolbars so common in all Windows applications until

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

Reference Services Division Presents. Excel Introductory Course

Reference Services Division Presents. Excel Introductory Course Reference Services Division Presents Excel 2007 Introductory Course OBJECTIVES: Navigate Comfortably in the Excel Environment Create a basic spreadsheet Learn how to format the cells and text Apply a simple

More information

Table of Contents Data Validation... 2 Data Validation Dialog Box... 3 INDIRECT function... 3 Cumulative List of Keyboards Throughout Class:...

Table of Contents Data Validation... 2 Data Validation Dialog Box... 3 INDIRECT function... 3 Cumulative List of Keyboards Throughout Class:... Highline Excel 2016 Class 10: Data Validation Table of Contents Data Validation... 2 Data Validation Dialog Box... 3 INDIRECT function... 3 Cumulative List of Keyboards Throughout Class:... 4 Page 1 of

More information

Getting Started KIDASA So ware, Inc. All Rights Reserved

Getting Started KIDASA So ware, Inc. All Rights Reserved Getting Started 1989 2012 KIDASA So ware, Inc. All Rights Reserved Getting Started: Exploring Your Workspace To learn more about the Milestones window choose: Help /Help Topics /Milestones Professional

More information

Microsoft Excel > Shortcut Keys > Shortcuts

Microsoft Excel > Shortcut Keys > Shortcuts Microsoft Excel > Shortcut Keys > Shortcuts Function Keys F1 Displays the Office Assistant or (Help > Microsoft Excel Help) F2 Edits the active cell, putting the cursor at the end* F3 Displays the (Insert

More information

Payment Function Exercise

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

More information

ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY

ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY Table of Contents Welcome to Night Owl Produc ons!... 3 Accessing Night

More information

MICROSOFT EXCEL KEYBOARD SHORCUTS

MICROSOFT EXCEL KEYBOARD SHORCUTS MICROSOFT EXCEL KEYBOARD SHORCUTS F1 Displays the Office Assistant or (Help > Microsoft Excel Help) F2 Edits the active cell, putting the cursor at the end F3 Displays the (Insert > Name > Paste) dialog

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

WEEK NO. 12 MICROSOFT EXCEL 2007

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

More information

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

Create an external reference (link) to a cell range in another workbook

Create an external reference (link) to a cell range in another workbook ProductsTemplatesStoreSupport My accountsign in Create an external reference (link) to a cell range in another workbook You can refer to the contents of cells in another workbook by creating an external

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

Julia Eclipse Plugin User Manual Table of Contents

Julia Eclipse Plugin User Manual Table of Contents Julia Eclipse Plugin User Manual Table of Contents Introduction Installation Settings Running Julia Navigating the Results Managing analyses results Extraction of the application under analysis Julia Java

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

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

BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist

BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist The following informa on provides an overview of how to use and complete the SIP Trunk elements of the BT System CRF portal. 1. Introduc

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

WEB TEACHER GUIDE. ebackpack provides a separate Student Guide through our support site at

WEB TEACHER GUIDE. ebackpack provides a separate Student Guide through our support site at ebackpack Web Teacher Guide Page 1 of 21 WEB TEACHER GUIDE This guide will cover basic usage of ebackpack for a teacher (assignments, storage, homework review, collaboration, and Act As support). If you

More information

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

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 Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

More information

RefWorks User Quick Start Guide VERSION 5.0

RefWorks User Quick Start Guide VERSION 5.0 RefWorks User Quick Start Guide VERSION 5.0 LOGGING IN Access www.refworks.com/refworks and then enter your personal Login Name and Password. (First- me users need to sign up for an individual account

More information

PC PRIVACY SHIELD. User Manual. PC Privacy Shield

PC PRIVACY SHIELD. User Manual. PC Privacy Shield PC PRIVACY SHIELD User Manual Table of Contents Welcome...3 Compa bility...3 Installa on and First Scan...5 Registra on...7 Status Screen...8 Ac ve Cleaning...9 Features Bar...9 Scan and Clean...10 User

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Using Microsoft Excel

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

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

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

More information

The Ribbon The Ribbon contains multiple tabs, each with several groups of commands. You can add your own tabs that contain your favorite commands.

The Ribbon The Ribbon contains multiple tabs, each with several groups of commands. You can add your own tabs that contain your favorite commands. Lesson1-Getting Star with excel Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson, you will learn your way around the Excel 2010 environment, including

More information

Introduction to Excel 2013 Part 2

Introduction to Excel 2013 Part 2 Introduction to Excel 2013 Part 2 Open a file Select File from the Menu bar, select Open from the drop down menu, navigate to the place where the file was stored, double-left click on the file name. Modify

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

4. In the Change Chart Type dialog box, click the type of chart to which you want to change. 5. Click the chart style. 6. Click OK.

4. In the Change Chart Type dialog box, click the type of chart to which you want to change. 5. Click the chart style. 6. Click OK. PROCEDURES LESSON 21: BUILDING BASIC CHARTS Creating a Chart 1 Select the range of data you want to chart 2 Click the INSERT tab Charts Group 3 Click the desired chart category button 4 In the gallery,

More information

Advanced Excel Selecting and Navigating Cells

Advanced Excel Selecting and Navigating Cells Advanced Excel 2007 One major organizational change in Excel 2007, when compared to 2003, is the introduction of ribbons. Each ribbon reveals many more options depending on what tab is selected. The Help

More information

PA Payroll Exercise for Intermediate Excel

PA Payroll Exercise for Intermediate Excel PA Payroll Exercise for Intermediate Excel Follow the directions below to create a payroll exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

IITS Workshop Creating a Gradebook in Microsoft Office Excel 2007

IITS Workshop Creating a Gradebook in Microsoft Office Excel 2007 IITS Workshop Creating a Gradebook in Microsoft Office Excel 2007 Table of Contents Our Gradebook Example:... 3 Set Up a New Gradebook... 3 Adding Formulas (Averages and Final Grades)... 4 Formatting data...

More information

Excel Advanced

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

More information

REGION: NORTH AMERICA

REGION: NORTH AMERICA R U M A REGION: NORTH AMERICA R U M A Chapter Issue Date 1 Introduc on 05/21/2012 2 Install and Upgrade Minimum Hardware Requirements Android Opera ng System and Wi Fi Se ngs Installing Revoquest the First

More information

Networking for Wide Format Printers

Networking for Wide Format Printers Networking for Wide Format Printers Table of Contents Configure PC before RIP Installa on... 1 Verifying Your Network Se ngs for Mac Communica on... 3 Changing Your Network Adapter for Mac Communica on...

More information

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

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

More information

EXCEL 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

BASIC MACROS IN EXCEL Presented by IGNACIO DURAN

BASIC MACROS IN EXCEL Presented by IGNACIO DURAN BASIC MACROS IN EXCEL 2013 Presented by IGNACIO DURAN Introduction What are Macros? Macros are little programs that run within Excel and help automate common repetitive tasks. Macros are one of Excel's

More information

Information System Services

Information System Services Information System Services Diocese of London, 1070 Waterloo Street, London, Ontario, N6A 3Y2 Phone:(519)433-0658, Fax:(519)433-0011, E-mail: iss@rcec.london.on.ca Excel Formatting Online Demonstration

More information

Microsoft Excel 2007 Level 1

Microsoft Excel 2007 Level 1 Information Technology Services Kennesaw State University Microsoft Excel 2007 Level 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied for

More information

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

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

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

Introduction to Microsoft Excel 2016

Introduction to Microsoft Excel 2016 Screen Elements: Introduction to Microsoft Excel 2016 The Ribbon The Ribbon is designed to help you quickly find the commands that you need to complete a task. Commands are organized in logical groups,

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

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

Microsoft Excel for Beginners

Microsoft Excel for Beginners Microsoft Excel for Beginners training@health.ufl.edu Basic Computing 4 Microsoft Excel 2.0 hours This is a basic computer workshop. Microsoft Excel is a spreadsheet program. We use it to create reports

More information

Girl Scouts of San Jacinto Counci Troop Initial Order Guide

Girl Scouts of San Jacinto Counci Troop Initial Order Guide Girl Scouts of San Jacinto Counci 2019 Troop Initial Order Guide 1 Getting Ready! Troop Informa on Set your troop s proceed plan. Log in to Smart Cookies and go to My Troop, then Troop Informa on to change

More information

Microsoft Excel Level 1

Microsoft Excel Level 1 Microsoft Excel 2010 Level 1 Copyright 2010 KSU Department of Information Technology Services This document may be downloaded, printed, or copied for educational use without further permission of the Information

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

Excel Tables & PivotTables

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

More information

Light Speed with Excel

Light Speed with Excel Work @ Light Speed with Excel 2018 Excel University, Inc. All Rights Reserved. http://beacon.by/magazine/v4/94012/pdf?type=print 1/64 Table of Contents Cover Table of Contents PivotTable from Many CSV

More information

Excel Tools Features... 1 Comments... 2 List Comments Formatting... 3 Center Across... 3 Hide Blank Rows... 3 Lists... 3 Sheet Links...

Excel Tools Features... 1 Comments... 2 List Comments Formatting... 3 Center Across... 3 Hide Blank Rows... 3 Lists... 3 Sheet Links... CONTEXTURES EXCEL TOOLS FEATURES LIST PAGE 1 Excel Tools Features The following features are contained in the Excel Tools Add-in. Excel Tools Features... 1 Comments... 2 List Comments... 2 Comments...

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

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 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

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Files in Microsoft Excel are referred to as Workbooks. This is because they can contain more than one sheet. The number of sheets a workbook can contain is only limited by your computer

More information

Excel has a powerful automation feature that lets you automate processes that you need to do repeatedly.

Excel has a powerful automation feature that lets you automate processes that you need to do repeatedly. Professor Shoemaker There are times in Excel when you have a process that requires several or many steps and that you need to do repeatedly. Excel has a powerful automation feature that lets you automate

More information

Formatting Worksheets

Formatting Worksheets 140 :: Data Entry Operations 7 Formatting Worksheets 7.1 INTRODUCTION Excel makes available numerous formatting options to give your worksheet a polished look. You can change the size, colour and angle

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting Microsoft Excel 2010 Chapter 2 Formulas, Functions, and Formatting Objectives Enter formulas using the keyboard Enter formulas using Point mode Apply the AVERAGE, MAX, and MIN functions Verify a formula

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

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

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

More information

Excel Simple Worksheets (with Functions)

Excel Simple Worksheets (with Functions) Excel 2007 Simple Worksheets (with Functions) Contents The Excel 2007 Window 4 Navigating in Excel... 7 Entering Data 8 Working with Ranges of Cells... 9 Selecting Ranges of Cells 9 Copy and Moving Cell

More information

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes Unit 12 Electronic Spreadsheets - Microsoft Excel Desired Outcomes Student understands Excel workbooks and worksheets Student can navigate in an Excel workbook and worksheet Student can use toolbars and

More information

Let s start by examining an Excel worksheet for the linear programming. Maximize P 70x 120y. subject to

Let s start by examining an Excel worksheet for the linear programming. Maximize P 70x 120y. subject to Excel is a useful tool for solving linear programming problems. In this question we ll solve and analyze our manufacturing problem with Excel. Although this problem can easily be solved graphically or

More information