Writing Macros in Microsoft Excel 2003
|
|
|
- Lesley Matthews
- 9 years ago
- Views:
Transcription
1 Writing Macros in Microsoft Excel 2003 Introduction A macro is a series of instructions which can be issued using a single command. The macro can be invoked in various different ways - from the keyboard (using a Control key combination), from a special icon on a toolbar or through the menu system. Ideally, you need to know a programming language (Microsoft Visual Basic) to create really useful macros; the examples below give you an introduction to macro writing. Absolute and Relative References Whenever you write a macro you have the option of using absolute or relative cell referencing. If you want to perform instructions on specific cells (eg move to cell A14, calculate the sum of the values above and format the result to appear as a currency in bold), then you use an absolute reference. If you want to move to a cell a certain number of rows/columns away from your present position (wherever that may be) then you use a relative reference. Hopefully the examples below will make this clear. First, open up the example file and set it up ready for use - users off campus can download the file by clicking on the filename in Step 1, below: 1. Load up Excel and [Open] the file called phoenix.xls in the D:\training folder 2. Right click on the PHOENIX tab and Insert a Worksheet - press <Enter> for [OK] 3. Click again on the PHOENIX tab to move back to the data Using Absolute References In this first example you are going to write a macro that adds up the values in column A and applies a bold format to the total. 1. From the Tools menu choose Macro followed by Record New Macro
2 2. Set the Macro name: as Sum 3. Set the Shortcut key: to Ctrl+ S (ie <Shift> + s) Note that case matters - try to avoid existing key combinations: <Ctrl s> is currently set to the Save command 4. Store Macro in: This Workbook - the alternative is to store it in your Personal Macro Workbook, which would make the macro available every time you used Excel 5. Amend the Description: if you like (use this to say what the macro does & who recorded it) 6. Press <Enter> or click on [OK] to start recording The Stop Recording toolbar appears - DO NOT CLOSE it. The two buttons on the toolbar are called [Stop Recording] and [Relative Reference]. Do not click on either button at this stage. You now need to perform the commands you want to constitute the macro: 7. Press <Ctrl Home> (or click on A1) to make sure the macro starts in cell A1 8. Hold down <Ctrl> and press <down arrow> to move the active cell to the end of column A 9. Release <Ctrl> then press <down arrow> once more to move to cell A Click on the [AutoSum] button then press <Enter> to confirm the formula =SUM(A2:A51) 11. Press the <up arrow> key to move back to cell A52, then click on the [Bold] button to embolden the result
3 12. Click on the [Stop Recording] button on the special toolbar to end the macro You should now have a macro which sums up the values in column A. Test out the macro as follows: 13. First, press <Delete> to empty cell A Next, hold down the <Ctrl> and <Shift> keys together and type the letter s - the sum appears in bold characters in cell A Try adding a new value - open the Insert menu and choose Rows 16. In the now empty cell A52 type in the value 51 then press <Enter> - note that the sum changes in A Run the macro again (<Ctrl Shift s>) and you'll find that the new value is replaced by the original sum figure, with A53 showing double the value This is a clear example of absolute references - the macro only works on the cells for which it was recorded. Even though a control key combination was used to move to the foot of the column, the next move (to cell A52 in step 9) was recorded as a move to a fixed cell. In this second example, absolute references are left turned on but this does not effect the result. The object of this macro is to search for Blue-Green eggs and highlight the cells in an appropriate colour. 1. From the Tools menu choose Macro followed by Record New Macro 2. Set the Macro name: as Colour 3. Set the Shortcut key: to Ctrl+ C (ie <Shift> + c - <Ctrl c> is currently set to copy) 4. Store Macro in: This Workbook and amend the Description: if you want 5. Press <Enter> or click on [OK] to start recording 6. Open the Edit menu and issue a Find... command 7. In the Find what: box type Blue-Green 8. Press <Enter> or click on [Find Next] 9. Press <Esc> or click on the [Close] button to close the Find window 10. Click on the list arrow attached to the [Fill Colour] button 11. Choose a suitable colour from the palette - eg Aqua 12. Click on the [Stop Recording] button on the special toolbar to end the macro
4 You should now have a macro which colours Blue-Green cells a suitable colour. Test out the macro by pressing the appropriate key combination: 13. Hold down the <Ctrl> and <Shift> keys and type the letter c - repeat this a couple of times The macro works from the active cell downwards, moving to the next bluegreen cell rather than to a fixed cell. To demonstrate this further: 14. Move the active cell down several rows 15. Hold down <Ctrl> and <Shift> and type the letter c You will see later how to edit the macro to colour all the Blue-Green cells, including those which were skipped. Using Relative References This next example is designed to copy every fifth row of data to the new sheet (Sheet1). Here, relative references are used because each successive source and target area is a known distance apart (5 rows down and 1 row down, respectively): 1. Before you start the macro, move to Sheet1 - click on the Sheet1 tab 2. From the Tools menu choose Macro followed by Record New Macro 3. Set the Macro name: as Every5 4. Set the Shortcut key: to Ctrl+ e 5. Store Macro in: This Workbook and amend the Description: if you want 6. Press <Enter> or click on [OK] to start recording Take great care to get the following instructions correct - if you make a mistake it's probably best to abandon the recording and start again (you may have to use a different shortcut key). 7. Click on the [Relative Reference] button on the right of the Stop Recording toolbar 8. Click on the PHOENIX tab then press <Ctrl Home> to make A1 the active cell
5 9. Hold down <Shift> and <Ctrl> and press the <right arrow> key to select row Click on the [Copy] button or choose Copy from the Edit menu 11. Click on the Sheet1 tab to move to the empty sheet 12. Press <Ctrl Home> to move to A1 then press <Enter> for Paste 13. Press the <down arrow> key to move the active cell on Sheet1 to A2 14. Click on the PHOENIX tab to move back to the original data 15. Press the <down arrow> key FIVE times to move the active cell to A6 (or just click on it) 16. Hold down <Shift> and <Ctrl> and press the <right arrow> key to select the row 17. Click on the [Copy] button or choose Copy from the Edit menu 18. Click on the Sheet1 tab then press <Enter> for Paste 19. Click on the [Stop Recording] button to end the macro Test out the macro, if you like (clear the data in the cells on Sheet1 then press <Ctrl e>) but all that happens is that the same subset of data is pasted into the same cells on Sheet1. To complete the macro you now need to edit it. Editing a Macro Though recording macros is relatively simple, changing them is by no means easy. When you edit a macro you are taken into the Visual Basic Editor, and you need to understand exactly what the programming code is doing. Even if you can t program you can make minor changes and, if you add the lines of programming detailed below, turn simple recorded macros into very useful ones. 1. From the Tools menu choose Macro followed by Macros 2. Select Every5 then click on [Edit] You are now placed in the Editor, with the following code displayed: Sub Every5() ' ' Every5 Macro ' Macro recorded 16/08/2005 to copy every fifth row to Sheet1 ' Keyboard Shortcut: Ctrl+e '
6 Sheets("PHOENIX").Select Range("A1").Select Range(Selection, Selection.End(xlToRight)).Select Selection.Copy Sheets("Sheet1").Select Range("A1").Select ActiveSheet.Paste Application.CutCopyMode = False ActiveCell.Offset(1, 0).Range("A1").Select Sheets("PHOENIX").Select ActiveCell.Offset(5, 0).Range("A1").Select Range(Selection, Selection.End(xlToRight)).Select Selection.Copy Sheets("Sheet1").Select ActiveSheet.Paste Application.CutCopyMode = False End Sub Don't worry if you don't understand what appears on the screen. If you compare it carefully with the original instructions then you might get some idea of what is happening. Note the line which says ActiveCell.Offset(1,0).Range("A1").Select. This is a relative reference - ie move the active cell down 1 row and across 0 columns from the active cell. Had you been using absolute references this line would have just read Range("A2").Select - ie move to and select cell A2. Tip: You can use <Alt F11> to open up the Editor direct from Excel (or switch between it and Excel). Once you have finished making your changes, <Alt q> can be used to close down the Editor. Repeating an Action Now try making some changes to the macro. If you wanted to select the 10th row then you could amend the second relative reference to read ActiveCell.Offset(10,0).Range("A1").Select. However, the original objective of the macro was to select EVERY fifth row - the instructions which have been recorded need to be repeated 10 times (as there are 50 rows in the data set). To do this, you need to add extra lines to the middle and end of the program: 1. Move the typing position to the start of the code to be repeated - ActiveCell.Offset(1,0)
7 2. Add the following line of code for k=1 to 10 then press <Enter> 3. Click at the end of the last-but-one line - Application.CutCopyMode = False 4. Press <Enter> and type the following line of code: next k These extra two lines of code create a loop that is repeated 10 times. The loop counter, k, starts at 1 and increases by 1 each time the code is run. When it gets to 10, the loop ends. 5. Close the Editor window by clicking on the [Close] window button (or press <Alt q>) - the changes to the code are saved automatically 6. Select and <Delete> the values stored on Sheet1 then press <Ctrl e> to run the macro You should find that 10 rows (every 5th one) are copied across to Sheet1. 7. See if you can perform a similar edit on the Colour macro to colour all the Blue-Green eggs You could extend this macro to colour the Red-Brown eggs too. Simply duplicate the code, replace Blue-Green with Red-Brown and set the ColorIndex to 45. Using Variables The counter, k, in the example above is known as a variable in programming. It varies between a starting value of 1 up to an ending value of 10. You can use this variable in your module code: 1. From the Tools menu choose Macro followed by Macros 2. Select Every5 then click on [Edit] 3. Change the line reading ActiveCell.Offset(5, 0).Range("A1").Select to ActiveCell.Offset(k,0).Range("A1").Select - ie change 5 to k 4. Close the MS Visual Basic window by clicking on the close window button 5. Select and <Delete> the values stored on Sheet1 then press <Ctrl e> to run the macro
8 You will find records 1, 3, 6, 10, 15, 21, 28, 36 and 45 are copied across - the offset (k) increases by 1 each time. When k=10, an empty record - sample number 55 in row 56 - is copied across. For this final example, you need to understand a little more about programming. The instruction ActiveCell.Offset has numeric parameters - real numbers like 1, 5 or 0 or numeric variables like k. On the other hand, the instruction Range("A1") has a string parameter, A1 (here enclosed in quotation marks). If you want to use the numeric variable k within the Range instruction, you must first convert it to a string of characters. 6. From the Tools menu choose Macro followed by Macros 7. Select Every5 then click on [Edit] 8. Click at the end of the line for k=1 to 10 and press <Enter> 9. Type in an extra line reading m$ = "A" & Format(k) The Format function converts the number stored in k into a string. 10. Change the line reading ActiveCell.Offset(1, 0).Range("A1").Select to ActiveCell.Offset(1,0).Range(m$).Select - ie change "A1" to m$ 11. Close the Editor window by clicking on the [Close] window button - or press <Alt q> 12. Select and <Delete> the values stored on Sheet1 then press <Ctrl e> to run the macro This time the macro copies the same rows from phoenix as before, but pastes them in the corresponding rows on Sheet1. This is because the paste is carried out not 1 cell down from the active cell (in column A) but m$ (ie k) cells down. Obviously there's a lot more to macro writing than this simple introduction, but at least you should have some idea of how macros work and how you can change them.
9 Changing a Shortcut Key If you want to change the shortcut key which runs a particular macro: 1. Open the Tools menu, choose Macro then Macros Select the macro whose shortcut key you wish to change 3. Click on the [Options...] button 4. Set the new Shortcut key: then press <Enter> for [OK] 5. Press <Enter> again to close the Macro dialog box Note that you can also alter the Description of a macro here. Deleting a Macro To delete a macro you no longer want: 1. From the Tools menu choose Macro followed by Macros 2. Select the macro to be deleted then click on [Delete] 3. You are asked to confirm the deletion - press <Enter> or click on [Yes] Setting Macro Security Levels Because macros have been used to spread viruses between computers, Microsoft has introduced Security settings into Office XP. Currently, on the PCs in the IT Services labs, this is set to the lowest level in Excel, as we have extensive anti-virus security on our system. On your own PC, it's advisable to
10 set this to the medium level, giving you the opportunity to enable macros or not. To set the security level: 1. Open the Tools menu, select Macro then Security - a dialog box appears with the following tabs: 2. Select the level of security required (here, keep it at Lowest) then click on [OK] Setting security to High disables all macros completely; setting it to Low loads up a file without any checking whatsoever. It is only advisable to choose this setting if your normal anti-virus software is kept up-to-date.
11 With the medium setting, when you open a file with a macro the following dialog box appears: 1. Click on the [Enable Macros] button to open the file with the macros active Tip: If you have been sent a file containing macros, it's a good idea to disable the macros when you first open the file and investigate them (using Edit).
Sorting, Subtotals and Outlines in Microsoft Excel 2003
Sorting, Subtotals and Outlines in Microsoft Excel 2003 Introduction This document covers both the simple and more advanced sorting facilities in Excel and also introduces you to subtotals and outlines.
Microsoft Word 2013 Macros (Level 3)
IT Training Unit name goes here Microsoft Word 2013 Macros (Level 3) Contents Introduction 1 Creating a Macro 2 Running a Macro 4 Editing a Macro 4 A Second Example 5 Word Units 6 A More Complex Example
Adding Comments in Microsoft Excel 2003
Adding Comments in Microsoft Excel 2003 Introduction Microsoft Excel has a very useful facility which allows you to add explanatory notes to your worksheet. These can be used, for example, to explain what
Microsoft Excel 2013 Splitting Windows and Fixing Panes (Level 3)
IT Training Microsoft Excel 2013 Splitting Windows and Fixing Panes (Level 3) Contents Introduction...1 Splitting the Window...1 Removing the Split...2 Viewing Different Worksheets...2 Freezing Panes...4
ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0
European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes
Templates and Slide Masters in PowerPoint 2003
Templates and Slide Masters in PowerPoint 2003 Introduction The layout of any PowerPoint presentation is set by the template used. Every presentation is based on a template; if a specific one is not chosen
Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1
Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key
The Center for Teaching, Learning, & Technology
The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston
Using Pivot Tables in Microsoft Excel 2003
Using Pivot Tables in Microsoft Excel 2003 Introduction A Pivot Table is the name Excel gives to what is more commonly known as a cross-tabulation table. Such tables can be one, two or three-dimensional
Microsoft Excel Basics
COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are
Macros in Word & Excel
Macros in Word & Excel Description: If you perform a task repeatedly in Word or Excel, you can automate the task by using a macro. A macro is a series of steps that is grouped together as a single step
Excel 2007 Basic knowledge
Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft
Move between open workbooks. Display the print menu. Select whole spreadsheet. Microsoft Excel Keyboard Keys. General
Microsoft Excel Keyboard Keys Source: http://allhotkeys.com/microsoft_excel_hotkeys.html General New file Ctrl + N Open file Ctrl + O Save file Ctrl + S Move between open workbooks Ctrl + F6 Close file
Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:
Excel basics Excel is a powerful spreadsheet and data analysis application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features
Excel 2003 A Beginners Guide
Excel 2003 A Beginners Guide Beginner 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
Programming Excel Macros
Programming Excel Macros R. Jason Weiss Development Dimensions International After my previous article on creating forms in Excel (Weiss, 2004) came out, I received some e-mail asking for more information
Instructions for Creating an Outlook E-mail Distribution List from an Excel File
Instructions for Creating an Outlook E-mail Distribution List from an Excel File 1.0 Importing Excel Data to an Outlook Distribution List 1.1 Create an Outlook Personal Folders File (.pst) Notes: 1) If
Advanced Excel Charts : Tables : Pivots : Macros
Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types
Introduction to Microsoft Excel 2010
Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom
Microsoft Excel 2007. Introduction to Microsoft Excel 2007
Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Excel is an electronic spreadsheet to organize your data into rows and columns. One can use it to perform basic to advanced level mathematical
Computer Training Centre University College Cork. Excel 2013 Level 1
Computer Training Centre University College Cork Excel 2013 Level 1 Table of Contents Introduction... 1 Opening Excel... 1 Using Windows 7... 1 Using Windows 8... 1 Getting Started with Excel 2013... 2
To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.
EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet
Microsoft Excel 2013: Using a Data Entry Form
Microsoft Excel 2013: Using a Data Entry Form Using Excel's built in data entry form is a quick and easy way to enter data into an Excel database. Using the form allows you to: start a new database table
WHAT S NEW IN MS EXCEL 2013
Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues
Excel macros made easy
IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.
How to Excel with CUFS Part 2 Excel 2010
How to Excel with CUFS Part 2 Excel 2010 Course Manual Finance Training Contents 1. Working with multiple worksheets 1.1 Inserting new worksheets 3 1.2 Deleting sheets 3 1.3 Moving and copying Excel worksheets
What is Microsoft Excel?
What is Microsoft Excel? Microsoft Excel is a member of the spreadsheet family of software. Spreadsheets allow you to keep track of data, create charts based from data, and perform complex calculations.
warpct.com Working with MS Excel 2003 Workbook courseware by WARP! Computer Training
warpct.com courseware by WARP! Computer Training Working with MS Excel 2003 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training
Formulas & Functions in Microsoft Excel
Formulas & Functions in Microsoft Excel Theresa A Scott, MS Biostatistician II Department of Biostatistics Vanderbilt University [email protected] Table of Contents 1 Introduction 1 1.1 Using
MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros.
MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. Record a macro 1. On the Developer tab, in the Code group, click Record Macro. 2. In
Microsoft Excel 2010. Understanding the Basics
Microsoft Excel 2010 Understanding the Basics Table of Contents Opening Excel 2010 2 Components of Excel 2 The Ribbon 3 o Contextual Tabs 3 o Dialog Box Launcher 4 o Quick Access Toolbar 4 Key Tips 5 The
MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11
MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5
Word 2010: Mail Merge to Email with Attachments
Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN
Excel 2007 A Beginners Guide
Excel 2007 A Beginners Guide Beginner 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
Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro.
Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Do you need to always add gridlines, bold the heading
Creating Forms in Microsoft Word 2007
Creating Forms in Microsoft Word 2007 Introduction In Microsoft Office 2007 Word forms are now listed under Legacy Tools, in the Developer / Controls section. In order to access it you have to elect to
Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: [email protected]
M o s t U s e f u l E x c e l C o m m a n d s Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: [email protected] Computer Training YOU Can Understand! Most Useful Excel Commands
Excel 2003: Ringtones Task
Excel 2003: Ringtones Task 1. Open up a blank spreadsheet 2. Save the spreadsheet to your area and call it Ringtones.xls 3. Add the data as shown here, making sure you keep to the cells as shown Make sure
How To Understand The Basic Concepts Of A Database And Data Science
Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas
Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction
Excel 2003 Tutorial I
This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar
VBA PROGRAMMING FOR EXCEL FREDRIC B. GLUCK 608-698-6304
VBA PROGRAMMING FOR EXCEL FREDRIC B. GLUCK [email protected] [email protected] 608-698-6304 Text VBA and Macros: Microsoft Excel 2010 Bill Jelen / Tracy Syrstad ISBN 978-07897-4314-5 Class Website
Formatting Formatting Tables
Intermediate Excel 2013 One major organizational change introduced in Excel 2007, was the ribbon. Each ribbon revealed many more options depending on the tab selected. The Help button is the question mark
Working with Macros and VBA in Excel 2007
Working with Macros and VBA in Excel 2007 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
SPV Reporting Tool VBA Code User Guide. Last Updated: December, 2009
SPV Reporting Tool VBA Code User Guide Last Updated: December, 2009 SPV Reporting Tool Excel VBA Functionalities Golden Copy Golden Copy - Introduction This portion of the User Guide will go through troubleshooting
Basic Microsoft Excel 2007
Basic Microsoft Excel 2007 The biggest difference between Excel 2007 and its predecessors is the new layout. All of the old functions are still there (with some new additions), but they are now located
Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP
Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD
Financial Data Access with SQL, Excel & VBA
Computational Finance and Risk Management Financial Data Access with SQL, Excel & VBA Guy Yollin Instructor, Applied Mathematics University of Washington Guy Yollin (Copyright 2012) Data Access with SQL,
AN INTRODUCTION TO STAROFFICE WRITER
CHAPTER 1 AN INTRODUCTION TO STAROFFICE WRITER 1.1 An Introduction to StarOffice StarOffice is an application that is designed to work on different operating systems. StarOffice is a full-featured office
Automate tasks with Visual Basic macros
Automate tasks with Visual Basic macros If you're not familiar with macros, don't let the term frighten you. A macro is simply a recorded set of keystrokes and instructions that you can use to automate
Excel 2010: Create your first spreadsheet
Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column
Q&As: Microsoft Excel 2013: Chapter 2
Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats
Microsoft Excel 2013 Tutorial
Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing
2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner.
How to open CSV file in Excel If you created a CSV file in another program, you can still open it as an Excel workbook in the usual way by using the Open command. Note. Opening the CSV file in Excel does
Lab 11: Budgeting with Excel
Lab 11: Budgeting with Excel This lab exercise will have you track credit card bills over a period of three months. You will determine those months in which a budget was met for various categories. You
Quick Start Guide. Highly customizable automated trading Automate your trades according to rules and models you create.
POWER E*TRADE PRO EXCEL MANAGER Quick Start Guide We are pleased to announce the launch of Excel Manager, an exciting new feature in Power E*TRADE Pro that leverages the flexibility of Microsoft Excel
Excel 2007 Introduction to Macros
Excel 2007 Introduction to Macros Collection (www.uwec.edu/help) developed by the University of Wisconsin-Eau Claire and copyrighted by the University of Wisconsin Board of Regents. Used by permission.
Spreadsheet - Introduction
CSCA0102 IT and Business Applications Chapter 6 Spreadsheet - Introduction Spreadsheet A spreadsheet (or spreadsheet program) is software that permits numerical data to be used and to perform automatic
Microsoft Excel 2010 Part 3: Advanced Excel
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting
The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.
Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge
Creating a Distribution List from an Excel Spreadsheet
Creating a Distribution List from an Excel Spreadsheet Create the list of information in Excel Create an excel spreadsheet. The following sample file has the person s first name, last name and email address
Pivot Tables & Pivot Charts
Pivot Tables & Pivot Charts Pivot tables... 2 Creating pivot table using the wizard...2 The pivot table toolbar...5 Analysing data in a pivot table...5 Pivot Charts... 6 Creating a pivot chart using the
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
Formulas & Functions in Microsoft Excel
Formulas & Functions in Microsoft Excel Theresa A Scott, MS Biostatistician III Department of Biostatistics Vanderbilt University [email protected] Table of Contents 1 Introduction 1 1.1 Using
Excel Project 4. 1. From the Start menu select New Office Document. If necessary, click the General tab and then double-click Blank workbook.
Excel Project 4 Two of the more powerful aspects of Excel are its wide array of functions and its capability to organize answers to what-if questions. In earlier projects you were introduced to several
Construction Administrators Work Smart with Excel Programming and Functions. OTEC 2014 Session 78 Robert Henry
Construction Administrators Work Smart with Excel Programming and Functions OTEC 2014 Session 78 Robert Henry Cell References C O P Y Clicking into the Formula Bar or the Active Cell will cause color coded
Microsoft Excel 2010 Linking Worksheets and Workbooks
Microsoft Excel 2010 Linking Worksheets and Workbooks Email: [email protected] Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Linking Worksheets & Workbooks 1.5 hour Topics include
Using Microsoft Word. Working With Objects
Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects
Keyboard shortcuts in Excel 2010. Keyboard access to the ribbon. In this article WILL MY OLD SHORTCUTS STILL WORK? Hide All
Page 1 of 9 Excel > Accessibility Keyboard shortcuts in Excel 2010 Hide All This article describes what Key Tips are and how you can use them to access the ribbon. It also lists CTRL combination shortcut
Excel 2007: Basics Learning Guide
Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This
In This Issue: Excel Sorting with Text and Numbers
In This Issue: Sorting with Text and Numbers Microsoft allows you to manipulate the data you have in your spreadsheet by using the sort and filter feature. Sorting is performed on a list that contains
Section 5 Icons and Shortcuts
ECDL Section 5 Icons and Shortcuts Section 5 Icons and Shortcuts By the end of this section you should be able to: Open files in their default programs Create, edit and delete shortcuts Select and move
Windows XP Pro: Basics 1
NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has
Excel & Visual Basic for Applications (VBA)
Excel & Visual Basic for Applications (VBA) The VBA Programming Environment Recording Macros Working with the Visual Basic Editor (VBE) 1 Why get involved with this programming business? If you can't program,
EXCEL FINANCIAL USES
EXCEL FINANCIAL USES Table of Contents Page LESSON 1: FINANCIAL DOCUMENTS...1 Worksheet Design...1 Selecting a Template...2 Adding Data to a Template...3 Modifying Templates...3 Saving a New Workbook as
Everyday Excel Stuff Excel Day Planner Organizer Reference Guide
Everyday Excel Stuff Excel Day Planner Organizer Reference Guide Opening & Saving the Excel Day Planner... 2 1. Opening the Day Planner...2 2. Saving the Day Planner...2 Daily Task Sheet... 2 1. Entering
Analyzing Excel Data Using Pivot Tables
NDUS Training and Documentation Analyzing Excel Data Using Pivot Tables Pivot Tables are interactive worksheet tables you can use to quickly and easily summarize, organize, analyze, and compare large amounts
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.
Microsoft Access 2007 Advanced Queries
Microsoft Access 2007 Advanced Queries When you run a query in Microsoft Access 2007, it is not only able to display records, but also able to perform specific tasks and actions based on user defined criteria.
Microsoft Migrating to Word 2010 from Word 2003
In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,
How to Make the Most of Excel Spreadsheets
How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which
To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following:
Excel Forms A data form provides a convenient way to enter or display one complete row of information in a range or table without scrolling horizontally. You may find that using a data form can make data
Excel 2013 Sort: Custom Sorts, Sort Levels, Changing Level & Sorting by Colored Cells
Excel 2013 Sort: Custom Sorts, Sort Levels, Changing Level & Sorting by Colored Cells As you keep adding more content to a worksheet, organizing that information becomes important. You can quickly reorganize
BulkSMS Text Messenger Product Manual
BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...
Microsoft Word 2011: Create a Table of Contents
Microsoft Word 2011: Create a Table of Contents Creating a Table of Contents for a document can be updated quickly any time you need to add or remove details for it will update page numbers for you. A
Windows 10: A Beginner s Guide
Windows 10: A Beginner s Guide Copyright 2014 Conceptual Kings. All are rights reserved. This book or any portion thereof may not be reproduced or used in any manner whatsoever without the express written
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals
Excel 2003 Instructions Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals contains extensive instructions for using Excel 2010 and Excel for Mac 2011. There are a few instances
Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: [email protected].
Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the
Microsoft PowerPoint 2013 An Essential Guide (Level 1)
IT Training Microsoft PowerPoint 2013 An Essential Guide (Level 1) Contents Introduction...1 Running an Example Presentation...1 Starting Microsoft PowerPoint...1 Creating a New Presentation...2 Entering
BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005
BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without
Highline Excel 2016 Class 26: Macro Recorder
Highline Excel 2016 Class 26: Macro Recorder Table of Contents Macro Recorder Examples in this video... 2 1) Absolute Reference Macro: Format report that always has the same number of columns and rows...
Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003
In This Guide Microsoft PowerPoint 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free PowerPoint
Microsoft Office Access 2007 Basics
Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: [email protected] MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER
