Chapter 1 INTRODUCTION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

Size: px
Start display at page:

Download "Chapter 1 INTRODUCTION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC."

Transcription

1 hapter 1 INTRODUTION SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN.

2 Objectives You will learn: Theory and terminology of OOPS. Objects, properties, and methods. How to record and read a macro. How to edit a recorded macro. How to execute a macro. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page i

3 Objects are the fundamental building blocks of Visual Basic. 1 Objects, Properties, and Methods Every element of MS Office, documents, tables, paragraphs, bookmarks, fields, are Visual Basic objects. 1.1 Objects and ollections An object represents an element of MS Office, such as a document in MS Word, a cell in a MS Excel document, a field in a MS Access table or a single character in any kind of document. A collection is an object that contains several other objects, usually of the same type. Example: All the bookmark objects in a document are contained in a single collection object. Using properties and methods, a single object or an entire collection of objects can be modified. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 1

4 1.2 Property A property is an attribute of an object or an aspect of its behavior. Properties of a document include its name, its content, and its save status, as well as whether change tracking is turned on. To change the characteristics of an object, the values of its properties must be changed. To set the value of a property, follow the reference to an object with a period, the property name, an equal sign, and the new property value. Example: This code turns on change tracking in the document named "MyDoc.doc." Documents("MyDoc.doc").TrackRevisions = True Documents refers to the collection of open documents, and the name "MyDoc.doc" identifies a single document in the collection. The TrackRevisions property is set for that single document. Some properties cannot be set. The Help topic for a property indicates whether that property can be set/changed (read-write) or can only be read (read-only). Information about an object can be ascertained by returning the value of one of its properties. Example: The code returns the name of the active document. docname = ActiveDocument.Name ActiveDocument refers to the document in the active window in Word. The name of that document is assigned to the variable docname. The Object Browser in the Visual Basic Editor also displays the read-write status at the bottom of the browser window when the property is selected. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 2

5 1.3 Methods A method is an action that an object can perform. Methods often have arguments that qualify how the action is performed. Example: This code prints the first three pages of the active document. ActiveDocument.PrintOut From:=1, To:=3 In most cases, methods are actions and properties are qualities. Using a method causes something to happen to an object, while using a property returns information about the object or it causes a quality about the object to change. 1.4 Returning an Object Most objects are returned by returning a single object from the collection. For example, the Documents collection contains the open Word documents. The Documents property of the Application object, which is the object at the top of the Word object hierarchy, is used to return the Documents collection. After the collection has been accessed, a single object can be returned by using an index value in parentheses. The index value is usually a number or a name. Example: Documents(1).lose This code uses the Documents property to access the Document collection. The index number is used to return the first document in the Documents collection. The lose method is then applied to the Document object to close the first document in the Documents collection. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 3

6 2 Recording a Macro to Generate ode In Word, Excel or PowerPoint, if the situation arises where the programmer is unsure of which Visual Basic method or property to use, the macro recorder can be turned on and the action can be performed manually. The macro recorder translates the actions into Visual Basic code. After the actions are recorded, the code can be modified. In MS Word, to ascertain what property or method to use to indent a paragraph: 1. On the Tools menu, point to Macro, and then click Record New Macro. 2. hange the default macro name if you'd like and click OK to start the recorder. 3. On the Format menu, choose Paragraph. 4. hange the left paragraph indent value and click OK. 5. lick the Stop Recording button on the Stop Recording toolbar. 6. On the Tools menu, point to Macro, and then click Macros. 7. Select the macro name from Step 2 and click the Edit button. 8. View the Visual Basic code to determine the property that corresponds to the left paragraph indent (the LeftIndent property). 9. Position the insertion point within LeftIndent and press F1 or click the Help button. Within the topic, examples can be viewed and it is possible to review the objects that support the LeftIndent property (click Applies To). Recorded macros use the Selection property to return the Selection object. Example: This instruction indents the selected paragraphs by a half inch. Selection.ParagraphFormat.LeftIndent = InchesToPoints(0.5) A recorded macro can be modified to work with Range objects. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 4

7 2.1 Revising Recorded Visual Basic Macros The macro recorder is a good for exploring the Visual Basic methods and properties and to create very simple modules. If a programmer doesn't know what properties or methods to use, the macro recorder can be turned on and then manually perform the action. The macro recorder translates the actions into Visual Basic code. There are, however, some limitations to recording macros. The following items cannot be recorded: onditional branches. Variable assignments. Looping structures. ustom user forms. Error handling. Text selections made with the mouse; keyboard combinations must be used. A macro can be enhanced by revising the code recorded into a module. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 5

8 2.2 Removing Unnecessary odes When recording a macro that involves selecting an option in a dialog box, the macro recorder records the settings of all the options in the dialog box. This occurs even if only one or two options are changed. This recorded macro includes a number of options from the Paragraph dialog box (Format menu) Sub Macro1() With Selection.ParagraphFormat.LeftIndent = InchesToPoints(0).RightIndent = InchesToPoints(0).SpaceBefore = 6.SpaceAfter = 6.LineSpacingRule = 0.Alignment = wdalignparagraphleft.widowontrol = True.KeepWithNext = False.KeepTogether = False.PageBreakBefore = False.NoLineNumber = False.Hyphenation = True.FirstLineIndent = InchesToPoints(0).OutlineLevel = 10 End With End Sub If it is necessary to change only the spacing before and after the paragraph, the macro can be changed to the following: Sub MyMacro() With Selection.ParagraphFormat.SpaceBefore = 6.SpaceAfter = 6 End With End Sub The simplified macro executes faster because it sets fewer properties. Only the spacing before and after are changed; all the other settings for the selected paragraphs are unchanged. Also, this guards the macro against undesired changes. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 6

9 2.3 Removing Unnecessary Arguments When the macro recorder records a method, the values of all the arguments are included. The following macro was recorded when the document named Test.doc was opened. The resulting macro includes all the arguments for the Open method Sub Macro1() Documents.Open FileName:=":\My Documents\Test.doc", onfirmonversions:= _ False, ReadOnly:=False, AddToRecentFiles:=False, PasswordDocument:="", _ PasswordTemplate:="", Revert:=False, WritePasswordDocument:="", _ WritePasswordTemplate:="", Format:=wdOpenFormatAuto End Sub The arguments that are not needed can be removed from the recorded macro. It is possible to remove all of arguments set to an empty string by setting WritePasswordDocument:="") Sub MyMacro() Documents.Open FileName:=":\My Documents\Test.doc", onfirmonversions:= _ False, ReadOnly:=False, AddToRecentFiles:=False, _ Revert:=False, Format:=wdOpenFormatAuto End Sub SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 7

10 3 MS Access Macros and Modules In Microsoft Access, many tasks can be accomplished with macros or through the user interface. Whether to use a macro or Visual Basic for Applications often depends on the particular task. 3.1 Macros Macros are an easy way to take care of simple details such as opening and closing forms, showing and hiding toolbars, and running reports. The database objects can be tied together very easily, because there's little syntax to remember; the arguments for each action are displayed in the lower part of the Macro window. In addition to the ease of use macros provide, you must use macros certain tasks. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 8

11 3.2 Using Visual Basic You should use Visual Basic instead of macros if you want to: Make your database easier to maintain. Because macros are separate objects from the forms and reports that use them, a database containing many macros that respond to events on forms and reports can be difficult to maintain. In contrast, Visual Basic event procedures are built into the form's or report's definition. If you move a form or report from one database to another, the event procedures built into the form or report move with it. reate your own functions. Microsoft Access includes many built-in functions, such as the IPmt function, which calculates an interest payment. These functions can be used to perform calculations without having to create complicated expressions. Using Visual Basic, it is possible to create user defined functions either to perform calculations that exceed the capability of an expression or to replace complex expressions. Mask error messages. When something unexpected happens while a user is working with your database, and Microsoft Access displays an error message, the message can be quite mysterious to the user, especially if the user isn't familiar with Microsoft Access. Using Visual Basic, the error can be detected when it occurs and either a user friendly message can be displayed or some action can be taken. reate or manipulate objects. In some situations, instead of creating or modifying an object in that object's Design view, one you may want to manipulate the definition of an object in code. Using Visual Basic, all the objects in a database, as well as the database itself can be manipulated. Perform system-level actions. Using Visual Basic the following tasks can be performed: heck to see if a file exists on the system. Use Automation or dynamic data exchange (DDE) to communicate with other Windows-based applications such as Microsoft Excel all functions in Windows dynamic-link libraries (DLLs). SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 9

12 Manipulate records one at a time. Visual Basic allows stepping through a set of records one record at a time and performing an operation on each record. In contrast, macros work with entire sets of records at once. Pass arguments to Visual Basic procedures. With Visual Basic arguments can be passed to the code at the time it is run or variables can be used for arguments. This gives a great deal of flexibility in how Visual Basic procedures run. SYS-ED \OMPUTER EDUATION TEHNIQUES, IN. (VBA - 0.7) h 1: Page 10

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

VISUAL BASIC 2 EDITOR

VISUAL BASIC 2 EDITOR VISUAL BASI 2 EDITOR hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: How to edit code in the. How to create, open, and access project(s). How to edit scripts and use the code

More information

MS Excel VBA Class Goals

MS Excel VBA Class Goals MS Excel VBA 2013 Class Overview: Microsoft excel VBA training course is for those responsible for very large and variable amounts of data, or teams, who want to learn how to program features and functions

More information

d2vbaref.doc Page 1 of 22 05/11/02 14:21

d2vbaref.doc Page 1 of 22 05/11/02 14:21 Database Design 2 1. VBA or Macros?... 2 1.1 Advantages of VBA:... 2 1.2 When to use macros... 3 1.3 From here...... 3 2. A simple event procedure... 4 2.1 The code explained... 4 2.2 How does the error

More information

You can record macros to automate tedious

You can record macros to automate tedious Introduction to Macros You can record macros to automate tedious and repetitive tasks in Excel without writing programming code directly. Macros are efficiency tools that enable you to perform repetitive

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

Visual Basic 2008 The programming part

Visual Basic 2008 The programming part Visual Basic 2008 The programming part Code Computer applications are built by giving instructions to the computer. In programming, the instructions are called statements, and all of the statements that

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

Chapter 1 INTRODUCTION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

Chapter 1 INTRODUCTION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. hapter 1 INTRODUTION SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: Features of. Differences between procedural and non-procedural languages. ategories and summary of statements. Syntax

More information

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above.

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. This will open another tab in your browser. Here you will see all files you own or that are shared

More information

MFS CONCEPTS 1 & COMPONENTS SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

MFS CONCEPTS 1 & COMPONENTS SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. hapter MFS ONEPTS 1 & OMPONENTS SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. IMS D and Message Format Services MFS oncepts & omponents Objectives You will learn: MFS - Message Format Services and the IMS system.

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

INTRODUCTION 1 AND REVIEW

INTRODUCTION 1 AND REVIEW INTRODUTION 1 AND REVIEW hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Programming: Advanced Objectives You will learn: Program structure. Program statements. Datatypes. Pointers. Arrays. Structures.

More information

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different pages or, as described in working with anchors, to different sections of

More information

Introduction to Programming

Introduction to Programming Introduction to Programming Course ISI-1329 - Three Days - Instructor-Led Introduction This three-day, instructor-led course introduces students to computer programming. Students will learn the fundamental

More information

Chapter 2 INSTALLATION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

Chapter 2 INSTALLATION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. hapter 2 INSTALLATION SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives: You will learn: Windows 2000 system requirements. Hardware and software compatibility issues. Upgrading versus performing a new

More information

MODULE VI: MORE FUNCTIONS

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

More information

Chapter WINDOWS SERVER ENVIRONMENT

Chapter WINDOWS SERVER ENVIRONMENT hapter WINDOWS 2000 2 SERVER ENVIRONMENT SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: Windows 2000 system requirements. Upgrading versus performing a new installation. Type of installation

More information

Chapter 1 INTRODUCTION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

Chapter 1 INTRODUCTION SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. hapter 1 INTRODUTION SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: Java features. Java and its associated components. Features of a Java application and applet. Java data types. Java

More information

Introducing Simple Macros

Introducing Simple Macros 28 Introducing Simple Macros Macros Overview, 28-2 The Structure of a Global Macro, 28-4 Example of a Global Macro, 28-5 Creating a Global Macro, 28-6 Invoking a Global Macro, 28-7 Adding Control Statements,

More information

SDL Trados Studio 2011 Getting Started for Translators

SDL Trados Studio 2011 Getting Started for Translators Training ourse SDL Trados Studio 2011 Getting Started for Translators Innovation Delivered. Table of ontents TABLE OF ONTENTS hapter: 1 Introduction About this Training Workbook... 1-2 hapter: 2 AT Technologies

More information

Microsoft Excel 2013 Comments (Level 3)

Microsoft Excel 2013 Comments (Level 3) IT Training Microsoft Excel 2013 Comments (Level 3) Contents Introduction...1 Adding a Comment to a Cell...1 Displaying Cell Comments...2 Editing a Cell Comment...3 Deleting a Cell Comment...3 Searching

More information

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide PROGRAMMING WITH REFLECTION: VISUAL BASIC USER GUIDE WINDOWS XP WINDOWS 2000 WINDOWS SERVER 2003 WINDOWS 2000 SERVER WINDOWS TERMINAL SERVER CITRIX METAFRAME CITRIX METRAFRAME XP ENGLISH Copyright 1994-2006

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

Highline College. Busn 216: Computer Applications for Business (Fun and Power with Computers)

Highline College. Busn 216: Computer Applications for Business (Fun and Power with Computers) Highline College Busn 216: Computer Applications for Business (Fun and Power with Computers) Office 2016 Video #04: Introduction to Word, Ribbons, QAT, Navigation Tricks, Selection Tricks 1) Word Word

More information

1 Applying ActiveX to CTD 1.5 Tony Vinayak 2 Care for some T? Mark Hunter

1 Applying ActiveX to CTD 1.5 Tony Vinayak 2 Care for some T? Mark Hunter Pro Centura TM Visit us at www.propublishing.com! Hot Ideas for Centura Developers Applying ActiveX in CTD 1.5 Tony Vinayak ow that Microsoft has finally gotten it right with COM after earlier attempts

More information

Introduction. Uploading and Syncing Files. Google Drive and Docs Uploading and Syncing Files. Uploading Files to Google Drive.

Introduction. Uploading and Syncing Files. Google Drive and Docs Uploading and Syncing Files. Uploading Files to Google Drive. Google Drive and Docs Uploading and Syncing Files Introduction Page 1 Google Drive makes it easy to store and access your files online in the cloud, allowing you to access them from any computer with an

More information

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG Document Number: IX_APP00113 File Name: SpreadsheetLinking.doc Date: January 22, 2003 Product: InteractX Designer Application Note Associated Project: GetObjectDemo KEYWORDS DDE GETOBJECT PATHNAME CLASS

More information

Examples: To speed up routine editing and formatting Page X of Y. If you type teh plus a space, AutoCorrect replaces it with "the.

Examples: To speed up routine editing and formatting Page X of Y. If you type teh plus a space, AutoCorrect replaces it with the. Ways to Automate Repetitive Tasks: AutoText The AutoText feature lets you specify a short name for a body of text or graphics and then lets you insert that body of material just by typing the short name.

More information

INTRO TO EXCEL 2007 TOPICS COVERED. Department of Technology Enhanced Learning Information Technology Systems Division. What s New in Excel

INTRO TO EXCEL 2007 TOPICS COVERED. Department of Technology Enhanced Learning Information Technology Systems Division. What s New in Excel Information Technology Systems Division What s New in Excel 2007... 2 Creating Workbooks... 6 Modifying Workbooks... 7 Entering and Revising Data... 10 Formatting Cells... 11 TOPICS COVERED Formulas...

More information

UTILITY FUNCTION 1 PROGRAMS: GETTING STARTED

UTILITY FUNCTION 1 PROGRAMS: GETTING STARTED UTILITY FUNTION 1 PROGRAMS: GETTING STARTED hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: To identify the tasks which can be performed by the utility functions. Utility control

More information

Introduction. Using Indents and Tab Stops. Google Documents Using Indents, Tabs, and Lists. Indenting Text. Page 1

Introduction. Using Indents and Tab Stops. Google Documents Using Indents, Tabs, and Lists. Indenting Text. Page 1 Google Documents Using Indents, Tabs, and Lists Introduction Page 1 Indenting and lists are a great way to draw attention to important areas of your document. There are several ways in Google Documents

More information

Manual Calculation Definition Excel Shortcut Keyboard

Manual Calculation Definition Excel Shortcut Keyboard Manual Calculation Definition Excel Shortcut Keyboard Pressing Esc on your keyboard will allow you to exit Excel formula editing. If you have set your Excel formulas to calculate manually, and want to

More information

Word Processing vs. Desktop Publishing

Word Processing vs. Desktop Publishing Automating Microsoft Word 2003 1 Course Topics: I. MS Word Overview II. Using Styles III. Using Templates IV. Running and Recording a Macro Microsoft Word Review Word Processing vs. Desktop Publishing

More information

Visual Basic Primer A. A. Cousins

Visual Basic Primer A. A. Cousins Hard Wiring The first research computers of the late 1940s were programmed by hard wiring. Cables were plugged and unplugged into huge patch boards to physically alter the electrical circuitry. To program

More information

MAXQDA and Chapter 9 Coding Schemes

MAXQDA and Chapter 9 Coding Schemes MAXQDA and Chapter 9 Coding Schemes Chapter 9 discusses how the structures of coding schemes, alternate groupings are key to moving forward with analysis. The nature and structures of the coding scheme

More information

STEP BY STEP GUIDE TO FORMAT A DOCUMENT IN WORD

STEP BY STEP GUIDE TO FORMAT A DOCUMENT IN WORD STEP BY STEP GUIDE TO FORMAT A DOCUMENT IN WORD STEP 1: Copying the File from Floppy to Hard Drive Open Windows Explorer from Start menu: In Windows Explorer, click New > Folder on File menu: Give your

More information

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

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

More information

Word 2016 Advanced. North American Edition SAMPLE

Word 2016 Advanced. North American Edition SAMPLE Word 2016 Advanced Word 2016 Advanced North American Edition WORD 2016 ADVANCED Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Separate Text Across Cells The Convert Text to Columns Wizard can help you to divide the text into columns separated with specific symbols.

Separate Text Across Cells The Convert Text to Columns Wizard can help you to divide the text into columns separated with specific symbols. Chapter 7 Highlights 7.1 The Use of Formulas and Functions 7.2 Creating Charts 7.3 Using Chart Toolbar 7.4 Changing Source Data of a Chart Separate Text Across Cells The Convert Text to Columns Wizard

More information

Free Microsoft Office 2010 training from MedCerts. Course Outline

Free Microsoft Office 2010 training from MedCerts. Course Outline Free Microsoft Office 2010 training from MedCerts Course Outline Microsoft Office Word 2010: Basic Course Introduction Unit 01 - Getting Started Topic A: The Word Window The Word 2010 Window Demo - A-1:

More information

Macros in Excel: Recording, Running, and Editing

Macros in Excel: Recording, Running, and Editing Macros in Excel: Recording, Running, and Editing This document provides instructions for creating, using, and revising macros in Microsoft Excel. Simple, powerful, and easy to customize, Excel macros can

More information

IMS-DL/I 2 STRUCTURE. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

IMS-DL/I 2 STRUCTURE. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. IMS-DL/I 2 STRUTURE hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: Database hierarchy. DL/I database segments. DL/I database records. Parent and child segments. Twins and siblings.

More information

Word Skills for ETD Preparation

Word Skills for ETD Preparation Word Skills for ETD Preparation Microsoft Office Word 2010 Office of Information Technology West Virginia University OIT Help Desk (304) 293-4444 1-877-327-9260 http://oit.wvu.edu/training/etd/ oithelp@mail.wvu.edu

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 Objective To provide a review of the new features in the Microsoft Excel 2007 screen. Overview Introduction Office Button Quick Access Toolbar Tabs Scroll Bar Status Bar Clipboard

More information

Extending the Unit Converter

Extending the Unit Converter Extending the Unit Converter You wrote a unit converter previously that converted the values in selected cells from degrees Celsius to degrees Fahrenheit. You could write separate macros to do different

More information

Writing Excel Macros With Vba 2nd Edition

Writing Excel Macros With Vba 2nd Edition We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with writing excel macros

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

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Microsoft Excel 2010 Level 1

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

More information

Chapter. Other Views. In This Chapter

Chapter. Other Views. In This Chapter Other Views hapter In This hapter Tabbed Views... - Stage (RLLplus) View... - Mnemonic View.... - ross Reference (XRef) View.... - PI View... - Trend View.... - Output Window... - ookmark.... - View Terminology...

More information

Overview. At Course Completion After completing this course, students will be learn about and be able to:

Overview. At Course Completion After completing this course, students will be learn about and be able to: Overview Organizations the world over rely on information to make sound decisions regarding all manner of affairs. But with the amount of available data growing on a daily basis, the ability to make sense

More information

11.1 Create Speaker Notes Print a Presentation Package a Presentation PowerPoint Tips... 44

11.1 Create Speaker Notes Print a Presentation Package a Presentation PowerPoint Tips... 44 Contents 1 Getting Started... 1 1.1 Presentations... 1 1.2 Microsoft Office Button... 1 1.3 Ribbon... 2 1.4 Mini Toolbar... 2 1.5 Navigation... 3 1.6 Slide Views... 4 2 Customize PowerPoint... 5 2.1 Popular...

More information

Quark XML Author September 2016 Update for Platform with Business Documents

Quark XML Author September 2016 Update for Platform with Business Documents Quark XML Author 05 - September 06 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository... Creating a new document from

More information

The Parts of a Function:

The Parts of a Function: The Parts of a Function: Each function has a specific order, called syntax, which must be strictly followed for the function to work correctly. Syntax Order: 1. All functions begin with the = sign. 2.

More information

Microsoft Excel - Macros Explained

Microsoft Excel - Macros Explained Microsoft Excel - Macros Explained Macros Explained Macros or macroinstructions allow you to automate procedures or calculations in Excel. Macros are usually recorded using the Macro recorder and then

More information

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions Microsoft Office Excel 2003 Tutorial 2 Working With Formulas and Functions 1 Use Excel s functions You can easily calculate the sum of a large number of cells by using a function. A function is a predefined,

More information

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials 2 About the Tutorial With TestComplete, you can test applications of three major types: desktop, web and mobile: Desktop applications - these

More information

most of that the data into change the paste Rename the sheet this:

most of that the data into change the paste Rename the sheet this: Tutorial 2: A more advanced and useful macro Now that you are somewhat familiar with the programing environment of VBA, this will introduce you, quickly, to some of the more useful commands you can do

More information

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

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

More information

IF & VLOOKUP Function

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

More information

Lesson 4 - Basic Text Formatting

Lesson 4 - Basic Text Formatting Lesson 4 - Basic Text Formatting Objectives In this lesson we will: Introduce Wiki Syntax Learn how to Bold and Italicise text, and add Headings Learn how to add bullets and lists Now that you have made

More information

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

Upravljanje softverskim projektima Part 3 Special Subjects

Upravljanje softverskim projektima Part 3 Special Subjects Part 3 pecial ubjects 16 ustomizing Project haring ustom Elements Between Project Plans Recording Macros Editing Macros ustomizing the Ribbon and Quick Access oolbar 01/14 ustomizing Project opy a customized

More information

SDL MultiTerm 2009 for Project Managers

SDL MultiTerm 2009 for Project Managers Training Guide SDL MultiTerm 2009 for Project Managers Because Brand Matters. Table of ontents TABLE OF ONTENTS hapter 1: Introduction About this Training Workbook... 1-2 hapter 2: About Termbases What

More information

Microsoft Office Excel 2007

Microsoft Office Excel 2007 Microsoft Office Excel 2007 Data Processing in Spreadsheets 1/28/2009 Microsoft Excel 1 Use Excel s functions! A function is a predefined (built-in) formula for commonly used calculations. Each Excel function

More information

Windows Computer A to Z Shortcut Key list with PDF

Windows Computer A to Z Shortcut Key list with PDF Windows Computer A to Z Shortcut Key list with PDF In the Computer world, a keyboard shortcut is a combination of one or more command to execute a particular action. These shortcuts are really helpful

More information

Microsoft Word 2010 Introduction

Microsoft Word 2010 Introduction Microsoft Word 2010 Introduction Course objectives Create and save documents for easy retrieval Insert and delete text to edit a document Move, copy, and replace text Modify text for emphasis Learn document

More information

Graduate Health Sciences Word Topics

Graduate Health Sciences Word Topics Graduate Health Sciences Word Topics This workshop is based on topics provided by Graduated Health Sciences. Have you ever moved text from one part of a Word document to another, and the formatting changed

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Computer Science Lab Exercise 2

Computer Science Lab Exercise 2 osc 127 Lab 2 1 of 10 Computer Science 127 - Lab Exercise 2 Excel User-Defined Functions - Repetition Statements (pdf) During this lab you will review and practice the concepts that you learned last week

More information

In the fourth unit you will learn how to upload and add images and PDF files.

In the fourth unit you will learn how to upload and add images and PDF files. Introduction Here at SUNY New Paltz, we use the Terminal Four (T4) web content management system (CMS). This puts the power of editing content on our college s webpage in the hands of our authorized users.

More information

Setting Up a Paper in APA Style Using Microsoft Word 2008 for MACs

Setting Up a Paper in APA Style Using Microsoft Word 2008 for MACs Setting Up a Paper in APA Style Using Microsoft Word 008 for MACs Open Microsoft Word 008. By default Word opens a new blank document. It is easiest if you create all of these settings before you begin

More information

EMCO Remote Installer Professional 5. Copyright EMCO. All rights reserved.

EMCO Remote Installer Professional 5. Copyright EMCO. All rights reserved. EMCO Remote Installer Professional 5 Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1 Excel 2010 Working with Basic Functions Working with Basic Functions Page 1 Figuring out formulas for calculations you want to make in Excel can be tedious and complicated. Fortunately, Excel has an entire

More information

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Introduction To VBA Contents Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Some Basics Code: You perform actions in VBA

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

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

Recording Macros In VBA

Recording Macros In VBA Recording Macros In VBA Recording Macros Developer ribbon Record Macro Recording details What to name the macro Where to store the macro 1 Naming The Macro: Conventions Part of your assignment marks will

More information

Setting Up a Paper in APA Style Using Microsoft Word 2007

Setting Up a Paper in APA Style Using Microsoft Word 2007 Setting Up a Paper in APA Style Using Microsoft Word 007 Open Microsoft Word 007. By default Word opens a new blank document. It is easiest if you create all of these settings before you begin your paper.

More information

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar Microsoft Excel 2007 is a spreadsheet application in the Microsoft Office Suite. A spreadsheet is an accounting program for the computer. Spreadsheets are primarily used to work with numbers and text.

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

North Shore Innovations, Ltd.

North Shore Innovations, Ltd. Access 2007 Access #1: Create Tables 4.00 The Fundamentals Introduction to Databases Starting Access The Getting Started Page and Opening a Database What s New in Access Understanding the Access Program

More information

Part II: Creating Visio Drawings

Part II: Creating Visio Drawings 128 Part II: Creating Visio Drawings Figure 5-3: Use any of five alignment styles where appropriate. Figure 5-4: Vertical alignment places your text at the top, bottom, or middle of a text block. You could

More information

Contents Table of Contents Part I Introduction Part II Setting up Word

Contents Table of Contents Part I Introduction Part II Setting up Word Contents I Table of Contents Part I Introduction 1 Part II Setting up Word 1 1 Setting... up Font 2 2 Setting... up Paragraph 3 3 Setting... up Margins 4 4 Setting... up Tabs 5 5 Setting... up Underlines

More information

Online Access: Login to The Media Audit

Online Access: Login to The Media Audit Online Access: Login to The Media Audit Using The Media Audit online has never been easier! Simply open your web browser and follow the quick instructions below. app.themediaaudit.com Open your favorite

More information

Lab 2. Task 1 : Learning basic tasks with PowerPoint. Estimated time

Lab 2. Task 1 : Learning basic tasks with PowerPoint. Estimated time Lab 2 Task 1 : Learning basic tasks with PowerPoint Objective : To familiarize with basic tasks in PowerPoint : 1. Create a presentation 2. Find and apply a template 3. Insert a new slide 4. Format text

More information

Technical Users Guide for the Performance Measurement Accountability System. National Information Center For State and Private Forestry.

Technical Users Guide for the Performance Measurement Accountability System. National Information Center For State and Private Forestry. PMAS Technical Users Guide for the Performance Measurement Accountability System National Information Center For State and Private Forestry Prepared By Peter Bedker Release 2 October 1, 2002 PMAS User

More information

How to Use Google. Sign in to your Chromebook. Let s get started: The sign-in screen. https://www.youtube.com/watch?v=ncnswv70qgg

How to Use Google. Sign in to your Chromebook. Let s get started: The sign-in screen. https://www.youtube.com/watch?v=ncnswv70qgg How to Use Google Sign in to your Chromebook https://www.youtube.com/watch?v=ncnswv70qgg Use a Google Account to sign in to your Chromebook. A Google Account lets you access all of Google s web services

More information

Excel VBA. Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data.

Excel VBA. Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data. Excel VBA WHAT IS VBA AND WHY WE USE IT Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data. Sometimes though, despite the rich set of features in the

More information

Schoolwires Editor Best Practices. Schoolwires Centricity2

Schoolwires Editor Best Practices. Schoolwires Centricity2 Schoolwires Editor Best Practices Schoolwires Centricity2 Schoolwires Centricity2 Editor Best Practices Table of Contents Introduction... 1 Practices for All Browsers... 2 Bullets Left Justify Bullets...

More information

Working with the Dope Sheet Editor to speed up animation and reverse time.

Working with the Dope Sheet Editor to speed up animation and reverse time. Bouncing a Ball Page 1 of 2 Tutorial Bouncing a Ball A bouncing ball is a common first project for new animators. This classic example is an excellent tool for explaining basic animation processes in 3ds

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

ACCT 133 Excel Schmidt Excel 2007 to 2010 Conversion

ACCT 133 Excel Schmidt Excel 2007 to 2010 Conversion ACCT 133 Excel Schmidt Excel 2007 to 2010 Conversion Note: Use this handout in connection with the handout on the parts of the Excel 2010 worksheet. This will allow you to look at the various portions

More information

PowerPoint 2010 Project Four Assignment Sheet

PowerPoint 2010 Project Four Assignment Sheet PowerPoint 2010 Project Four Assignment Sheet In this project you will create a question and answer PowerPoint presentation in a game format to review and reinforce curriculum concepts. The presentation

More information