Microsoft Word 2013 Macros (Level 3)
|
|
|
- Thomas Welch
- 9 years ago
- Views:
Transcription
1 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 6 Setting Changing Shortcut Keys 8 Copying Macros to Another Document or Template 8 The DEVELOPER Tab 9 Macro Security Levels 10 Deleting a Macro 11 Introduction A macro is a series of commands and instructions grouped together which, when run, carry out specific tasks automatically. They are especially useful for repetitive tasks or ones which involve several separate steps. You can use macros to: carry out routine editing and formatting combine multiple commands automate a complex series of tasks In fact the majority of Word commands themselves are macros - there are over 1500 macros built into the system. There are two ways to create your own macro in Word. The easier method is to use the Macro Recorder to record the actions you want carried out. Having recorded them once, they can then be repeated over and over again simply by using the macro. The other method is to write the macro in Visual Basic. This is much more difficult and to do it you need to know how to program. You can also record a macro and then use the Visual Basic Editor to alter part of it. 1
2 Macros can be assigned to a Quick Access Toolbar button or shortcut key. You can also press <Alt F8> (or use the [Macros] button on the VIEW tab) to display a list of the available macros. You can then select the required macro from the list and run it. By default, macros are stored in the special Normal.dotm template so that they are available for use with all documents but they can also be stored in a specific template or in a document. Because viruses are often spread through macros, they now have to be stored in special macro-enabled files and templates. Creating a Macro In order to write a macro from scratch, using Visual Basic, you need to know how that programming language works. In this document it is assumed that you do not have that expertise and so the Macro Recorder will be used instead. This is in fact the way most macros are created, even by users who do know Visual Basic. The code produced by the Recorder can then be edited to produce exactly what's required. You will be trying this out later in the notes. Let's begin with a relatively simple macro which automatically types some text (e.g. your name or department name) in bold letters and centres it. If you want the macro stored in a particular template then you must either open or create a document based on that template or open the template file itself. If you want the macro available in all documents or just in a particular one, then you open or create the document in the usual way (as described below): 1. Load up Word, as usual, or press <Ctrl n> to create a new document 2. Move to the VIEW tab, click on the down arrow attached to [Macros] on the far right then choose Record Macro... The Record Macro dialogue box will appear: 3. Enter a name for the macro - type BoldName Note that the name must consist of a continuous alphanumerical sequence - you cannot use Bold- Name or Bold Name. By default the macro will be stored in Normal.dotm, a template used to store macros for all your documents. You can, however, store the macro in the current document by selecting this option from the Store macro in: box: 2
3 4. Click on the list arrow on the right of the Store macro in: box and choose Document1 (document) 5. If you want, type a description for the macro in the Description: box 6. To assign your macro to the keyboard or button, click on the appropriate icon under Assign macro to - here, click on [Keyboard] and the Customize Keyboard dialog box will appear: 7. In the Press new shortcut key: box enter the keystrokes required, e.g. <Alt b> (case is significant) 8. Change Save changes in: to the current document (Document1) 9. Check this isn't already assigned under Currently assigned to: then press <Enter> for [Assign] 10. Finally, press <Esc> to [Close] the Customize Keyboard window Everything you now do is being recorded, so take great care to do it properly. Note the mouse pointer in Word has a recording icon attached to it. 11. Carry out the sequence of actions you want to record: a. Press <Ctrl b> or click on [Bold] to turn on bold text b. Press <Ctrl e> or click on the [Center] button to centre the text c. Now type in your text (here, type in your name or that of your department) d. Press <Ctrl b> or click on [Bold] again to turn off bold text e. Press <Enter> then press <Ctrl l> or click on [Align Left] to return to normal typing 12. Click on the [Macros] list arrow and choose Stop Recording to finish recording your macro IMPORTANT: when recording a macro, mouse movements made within the document window are not saved. For example, you cannot use the mouse to move the insertion point, to select text or items, or right click to copy, for example, but you can use it to click on menus and other options. Tips Before you begin recording a macro, plan the steps you want the macro to perform - it's a good idea to write them down on paper in the order required If you make an error while recording a macro this, together with the corrections, will also be recorded. However, you can always edit the macro later to remove any unwanted steps Note the Pause Recording option - you can use this to temporarily stop recording, test out the next sequence of steps then Resume Recorder again Some commands display dialog boxes and you may need to answer these inside the macro. This can sometimes be avoided - for example, if you save a document immediately before closing it then you are not asked whether you want to save any changes 3
4 If the macro includes the command Advanced Find or Replace, click on [More] button on the Find tab, and make sure All is set in the Search box. This stops Word asking whether you want to continue searching if you reach the end of the document If you want to use the macro in other documents make sure it doesn t depend on the current content If you use a particular macro often, assign it to a toolbar button or shortcut key. That way, you can run the macro directly without having to open the Macros dialog box Running a Macro You can now try out your newly created macro as follows: 1. Press <Ctrl a> to select your current text and <Delete> it 2. Now press <Alt b> - your text should appear, centred and in bold letters Macros which have not been assigned to a keystroke (or toolbar button) must be run using the [Macro] button on the Ribbon. Even macros which have been assigned can be run using this method, as you will see: 3. Click on the [Macros] button (or press <Alt F8>) 4. Make sure All active templates and documents is selected in the Macros in: box 5. In the Macro name box, select the macro you want to run - BoldName 6. Press <Enter> or click on [Run] - your text should appear a second time Tip: To see the built-in macros, press <Alt F8> then select Word commands from the Macros in: dropdown list. Editing a Macro You can make changes to a macro you have recorded using the Visual Basic Editor. For example, you may wish to remove unnecessary steps, or add instructions that could not be recorded in Word. Ideally, you need to know how to write programs in Visual Basic to do this. However, follow the instructions below and try to make sense of what's happening: 1. Click on the [Macros] button (or press <Alt F8>) 2. Make sure the Macros in: box is set to All active templates and documents 3. In the Macro name: box select the macro you want to edit (here, BoldName) then click on [Edit] The Editor window now appears. Don't worry too much about how this works; just read through the macro instructions, which hopefully will make some sense. 4
5 4. Find the line which types out the text and edit it in some way - (e.g. add your middle name) 5. In the line above which ends in ParagraphCenter, change Center to Right 6. Click on the [Close] button (or press <Alt q>) to close the editor and return to your document (the changes are saved automatically) Tip: You can switch between your document and the Visual Basic Editor by pressing <Alt F11>. Note that you will need to close the Editor window when you have finished editing. 7. End by testing out your macro - press <Alt b> - you should find your new text is displayed, this time aligned on the right Though the macro appears to work perfectly, it could in fact be improved. You may have noticed the lines which read Bold = wdtoggle. By clicking on the [Bold] button, bold wasn't turned on, it was toggled. If you switch bold on before you run the macro, then your text doesn't appear in bold and at the end of the macro you are not returned to plain letters. Try it: 8. Type in some text (to check it appears as normal) then press <Enter> for a new line 9. Press <Ctrl b> to turn on [Bold] then use <Alt b> to run the macro and note what happens 10. Type in some more text (it appears in bold!) then press <Enter> for a new line To overcome this problem you would need to establish normal text at the very start of your macro. You could have done this when recording the macro (display the Font dialog box by clicking on the group arrow then select a Font Style of Regular). Try this, if you like, or edit the first line of the macro as follows: 11. Press <Alt F11> to switch into the Editor 12. Change the FIRST Selection.Font.Bold = wdtoggle to Selection.Font.Bold = True 13. Close the Editor (<Alt q>) then run your macro again - it should work whether or not bold is already on A Second Example This second example of a macro reverses the order of two words. It could be used, for example, to reverse someone s name from Surname Firstname to the more conventional Firstname Surname order. 1. Type in your name (limit it to two words your name and family name) 2. Move to the VIEW tab, click on the down arrow attached to [Macros] then choose Record Macro Enter a name for the macro - e.g. NameSwitch 4. Store the macro in the current document by selecting this from Store macro in: 5. This time, assign it to a [Button] the Word Options dialog box appears 6. Select Project.NewMacros.NameSwitch then [Add >>] it to the Quick Access Toolbar 7. Next, click on [Modify ] and choose a symbol for the toolbar button then press <Enter> for [OK] 8. Finally, click on [OK] your button should be added to the Quick Access Toolbar Next, record the macro: 9. Carry out the following sequence of actions: a. Press <Ctrl Shift left_arrow> to select the second part of your name b. Now press <Ctrl x> to [Cut] it to the Clipboard c. Press <Ctrl left_arrow> to move the insertion point before the first part of your name d. Now press <Ctrl v> to [Paste] it from the Clipboard e. Finally, press <Ctrl right_arrow> to move the insertion point to the end of the line 5
6 10. On the VIEW tab, click on the [Macros] list arrow and choose Stop Recording to end your macro 11. Test out your macro by clicking on the new Quick Access Toolbar button The macro should reverse the order of any two words try it elsewhere in your text, if you like. Word Units If you look at the code recorded in the NameSwitch macro, you will find reference to wdword (another Word-specific parameter is wdtoggle). This is how a macro picks up a single word in the text. Other units include wdcharacter, wdsentence, wdparagraph, wdline, wdtable, wdcell, wdcolumn and wdrow. Selecting these units using the keyboard (remember, you can t use the mouse) isn t well known, so here s a list of how to do so: wdcharacter hold down <Shift> and press <left_arrow> (or <right_arrow>) wdword hold down both <Shift> and <Ctrl> and press <left_arrow> (or <right_arrow>) wdsentence hold down both <Shift> and <Ctrl> and press <up_arrow> (or <down_arrow>) wdline hold down <Shift> and press <Home> (or <End>) if you press just <Home> or <End> first, you move the insertion point to the start/end of the line; then select using <Shift> as well wdcell press <Home> to move to the start of the text in the cell then <Shift End> wdcolumn press <Alt Page Up> to move to the top cell then <Shift Alt PageDown> wdrow press <Alt Home> to move to the leftmost cell then <Shift Alt End> wdtable hold down <Alt> and press <5> on the numeric keypad with <Num Lock> turned off (or use combinations of <Alt PageUp/Home> and <Shift Alt PageDown/End> as above) Note: In the above, holding down <Shift> selects if you don t, the key presses move the insertion point. A More Complex Example This next example involves a little more programming. If you want to apply a macro to some text where the number of letters varies, you may need to build this factor into your macro. This next macro shows you how (it makes alternate letters in a word upper/lower case). Begin by recording some of the steps: 1. Click immediately after your name to reposition the insertion point 2. On the VIEW tab, click on the down arrow attached to [Macros] then choose Record Macro Enter a name for the macro - e.g. UpperLower 4. Store the macro in the current document by selecting this from Store macro in: 5. Assign it to a [Button] 6. Select Project.NewMacros.UpperLower then [Add >>] it to the Quick Access Toolbar 7. Next, click on [Modify ] and choose a symbol for the toolbar button then press <Enter> for [OK] 8. Finally, click on [OK] a second button should be added to the Quick Access Toolbar IMPORTANT: the macro is now recording so take care not to do anything you don t want in the macro. 9. Carry out the following sequence of actions: a. Press <Ctrl Shift left_arrow> to select the word b. Press <left_arrow> to release the selection and place the typing position before the word c. Hold down <Shift> and press the <right_arrow> key once to select the first character d. On the HOME tab, click on [Change Case] and choose UPPERCASE 6
7 e. Press <right_arrow> to release the selection f. Repeat step 9c to select the next character g. Repeat step 9d, setting [Change Case] to lowercase (then press <right_arrow>) h. Press <Ctrl right_arrow> to move to the end of the word 10. Move to the VIEW tab, click on the [Macros] list arrow and choose Stop Recording to end your macro Obviously the macro so far only works on the first two letters of a word. Test it out, if you like, by typing in another word then run the macro. To get it to work for the whole word requires some extra programming: 11. Click on the [Macros] button (or press <Alt F8>) 12. Select the macro UpperLower and click on [Edit] all the macros are displayed Tip: You could also have pressed <Alt F11> at step 11 to switch directly to the Visual Basic Editor. You now have to add two extra features to the macro. Firstly, the computer must work out how many characters there are in the selected word then, secondly, it needs to repeat the code setting up the case for each character in turn. The first problem is solved by using the built-in function, Len( ), while for the second you need to set up a loop. Two variables are used - x holds the length of the word (plus the following space) while n acts as a counter for the loop. If necessary, delete any superfluous lines of code you may have accidentally recorded. 13. Edit the macro so that it reads as below (the edits are shown in bold): Sub UpperLower() ' UpperLower Macro End Sub Selection.MoveLeft Unit:=wdWord, Count:=1, Extend:=wdExtend x = Len(Selection) + 1 Selection.MoveLeft Unit:=wdCharacter, Count:=1 For n = 1 To x / 2 Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend Selection.Range.Case = wduppercase Selection.MoveRight Unit:=wdCharacter, Count:=1 Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend Selection.Range.Case = wdlowercase Selection.MoveRight Unit:=wdCharacter, Count:=1 Next n Selection.MoveRight Unit:=wdWord, Count:=1 14. When you have finished editing the macro, [Close] the Editor 15. At the end of your text, type in another word then click on your [UpperLower] button to run the macro If the macro doesn't work properly, double check your code matches that above in the Visual Basic Editor. 7
8 Setting Changing Shortcut Keys In the last two examples, you assigned the macro to a toolbar button instead of a shortcut key. Sadly, you don t have the opportunity to do both when recording the macro. You can set a key later, however: 1. Click on the [Customize Quick Access Toolbar] down arrow to the right of the Quick Access Toolbar in the top left of your Word window, and choose More Commands 2. Next, choose Customize Ribbon from the list on the left 3. Under the heading Keyboard shortcuts: at the foot of the Word Options dialog box, click on [Customize ] the Customize Keyboard dialog box appears 4. Make sure Save changes in: is set to the current document (i.e. Document1) 5. Under Categories: scroll down and select Macros (any EN macros in the list are those used by EndNote) 6. In the Macros: box on the right select the macro to be redefined (here, UpperLower) 7. Click in the Press new shortcut key: box, press in a new key combination, e.g. <Alt u> then [Assign] it 8. [Close] both the Customize Keyboard and Word Options dialog (click on [OK]) boxes 9. Type in a new word then press <Alt u> to check your shortcut key is working Copying Macros to Another Document or Template You can copy a macro for use in another document or template using the Organizer. This also lets you rename a group of macros, known as a Project. Individual macros can be renamed in the Visual Basic Editor. In this next exercise, you are going to copy your macros from your original document into a new one. 1. Begin by saving your current document press <Ctrl s> for [Save] and choose My Documents (under Computer on the right) 2. Change Save as type: to a Word Macro-Enabled Document (*.docm), enter a file name (e.g. TestMacro) then press <Enter> for [Save] Note that files containing macros have to be saved as a special file type. If you were to try and save your document as an ordinary Word document, you would be given the choice of either saving as a macrofree document (the macros would automatically be discarded) or to return to the Save As dialog box to change the type to a Word Macro-Enabled Document. 3. Now press <Ctrl n> for a new document 4. Press <Alt b> - you ll find that the BoldName macro no longer works (neither do the toolbar buttons) 5. Press <Alt F8> to display the macros - there shouldn't be any of yours 8
9 6. Click on [Organizer...] and check you are on the Macro Project Items tab (you can also move Styles) In the Organizer window, the left half of the window represents the active document, Document2. The right half of the window is currently set to the default template, Normal.dotm, but you can change this if you want to move the macros somewhere else: 7. Close the Normal.dotm file by clicking on [Close File ] on the right 8. Now click on the same button which has been renamed [Open File...] it will be showing all the templates in a Templates folder on the right-hand side of the Open window 9. Click on the Documents folder on the left-hand side of the Open window 10. Change the setting to the right of the File name: box to Word Macro-Enabled Documents (*.docm) 11. Choose your original document (TestMacro.docm) and [Open] it 12. Select NewMacros then click on [< - Copy] to add them to your Document2 file The current name for the set of macros isn't very helpful and it's a good idea to change this: 13. Select it in the left-hand box, click on [Rename...] and change the name to TestMacros - click on [OK] 14. Click on [Close] to shut down the Organizer window 15. Press <Alt F8> to display the available macros (all three should now be showing) 16. Select BoldName and [Run] it Note: You cannot use a shortcut key to run the macro as that information isn't passed across in the Organizer. Try setting up the shortcut keys, as described in the previous section. The DEVELOPER Tab If you use macros a lot, you may wish to add the DEVELOPER tab to your Ribbon. This has its own buttons for [Record Macro], [Pause Recording] etc. It also has controls which can be used on Forms. To display the tab: 1. Move to the FILE tab and choose Options 2. Next, click on Customize Ribbon 3. In the pane on the right, turn on the DEVELOPER tab by clicking in the check box next to Developer 4. Press <Enter> for [OK] to display the tab (and close the Word Options dialog box) 9
10 Macro Security Levels Because macros have been used to spread viruses between computers, Microsoft has introduced Security settings into Office. On the PCs in the IT labs, this is set at the lowest level as the University already has comprehensive anti-virus software. On your own PC, however, this might not be the case. The security check is carried out whenever a file is opened. To see the security settings: 1. Click on the [Macro Security] button on the new DEVELOPER tab Note: when this tab isn t displayed, click on the FILE tab, then Options (on the left) followed by Trust Center (again on the left) and finally the [Trust Center Settings ] button (on the right). 2. Choose the level of security required - here set it to Disable all macros with notification then press <Enter> for [OK] 3. Switch to your original macros document (TestMacro.docm) and [Close] it 4. Now reopen the document (move to the FILE tab, click on Open and select it from the list of files under Recent Documents) If an extra yellow bar appears below the Ribbon: 5. Click on [Enable Content] to enable the macros Note: If you set security to Enable all macros then no macro checking is performed (files are opened automatically). If the anti-virus software on your computer is kept up-to-date (as is the case on the PCs in the IT labs) then there is no problem setting this level; if it isn't then you are asking for trouble if you choose this option. 6. You are now asked whether you want to make this a Trusted Document if you answer [Yes] then the content will be enabled when you next open this file; if [No] then another Security Warning appears Note also that Windows allows you to nominate Trusted Sources for macros. You can set up a special folder on your own PC in which to store macro files and then declare this to be a Trusted Source. Opening files from the folder will then bypass the macro security. 10
11 Deleting a Macro In the above exercises, both macros were only stored in the documents themselves, so you can get rid of them simply by deleting the documents. If you wanted to remove the macros from a file (or the Normal.dotm template) you can do so either as a single project via the Organizer (simply select it and click on [Delete]) or via the Macros dialog box: 1. Click on the [Macros] button on the VIEW or DEVELOPER tab (or press <Alt F8>) 2. In the Macros in: box, check that it is set to the current document (e.g. TestMacro.docm) 3. In the Macro name: box, click on the name of the macro you want to delete 4. Click on [Delete] and confirm the deletion by pressing <Enter> for [Yes] 5. Press <Esc> or click on [Close] to close the Macros dialog box 6. End by closing down Word there s no need to save the files 7. <Delete> the file TestMacro.docm from Documents you don t need this any more Note: See Microsoft Excel 2010 Visual Basic for further training on writing macros. Though this uses Excel, the code is equally applicable to Word. Trademark owned by Microsoft Corporation. Screen shot(s) reprinted by permission from Microsoft Corporation. Copyright 2015: The University of Reading Last Revised: December
Writing Macros in Microsoft Excel 2003
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
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 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
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
Skill Set 4. Macros. By the end of this Skill Set you should be able to: Record a Macro Run a Macro Assign a Macro Create a Multiple Action Macro
Skill Set 4 Macros By the end of this Skill Set you should be able to: Record a Macro Run a Macro Assign a Macro Create a Multiple Action Macro Word 2007 CiA Training Ltd 2008 55 ITQ Level 3 Exercise 27
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
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
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
Creating tables of contents and figures in Word 2013
Creating tables of contents and figures in Word 2013 Information Services Creating tables of contents and figures in Word 2013 This note shows you how to create a table of contents or a table of figures
Creating trouble-free numbering in Microsoft Word
Creating trouble-free numbering in Microsoft Word This note shows you how to create trouble-free chapter, section and paragraph numbering, as well as bulleted and numbered lists that look the way you want
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
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.
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.
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,
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
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.
Step 2: Headings and Subheadings
Step 2: Headings and Subheadings This PDF explains Step 2 of the step-by-step instructions that will help you correctly format your ETD to meet UCF formatting requirements. Step 2 shows you how to set
Introduction to Word 2007
Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming
Course Code: PP0701 An Introduction to PowerPoint 2007
Academic Services Learning Development Course Code: PP0701 An Introduction to PowerPoint 2007 Version 1.0 www.istraining.bham.ac.uk Introduction to PowerPoint 2007 Author: Paul Foxall Version: 1.0, May
Microsoft Word 2010. Level 3
Microsoft Word 2010 Level 3 1 Copyright 2010 KSU Dept. of Information Technology Services This document may be downloaded, printed, or copied for educational use without further permission of the Information
Creating a table of contents quickly in Word
Creating a table of contents quickly in Word This note shows you how to set up a table of contents that can be generated and updated quickly and easily, even for the longest and most complex documents.
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
Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010
Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010 TABLE OF CONTENTS WHAT IS A STYLE?... 2 VIEWING AVAILABLE STYLES IN THE STYLES GROUP... 2 APPLYING STYLES FROM THE STYLES GROUP...
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
Microsoft PowerPoint 2010 Handout
Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience
Formatting & Styles Word 2010
Formatting & Styles Word 2010 Produced by Flinders University Centre for Educational ICT CONTENTS Layout... 1 Using the Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands
I ntroduction. Accessing Microsoft PowerPoint. Anatomy of a PowerPoint Window
Accessing Microsoft PowerPoint To access Microsoft PowerPoint from your home computer, you will probably either use the Start menu to select the program or double-click on an icon on the Desktop. To open
Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source
Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand
Content Author's Reference and Cookbook
Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents
Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc.
Email Basics Add CC or BCC You can display the Bcc box in all new messages that you compose. In a new message, do one of the following: 1. If Microsoft Word is your e-mail editor a. Click the arrow to
Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT...
Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT... 4 Open a blank document... 4 Start a document from a template...
Merging Labels, Letters, and Envelopes Word 2013
Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged
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
Microsoft Excel v5.0 Database Functions
Microsoft Excel v5.0 Database Functions Student Guide Simon Dupernex Aston Business School Version 1.0 1 Preface This document is an introduction to the database functions contained within the spreadsheet
Microsoft Word 2010 Training
Microsoft Word 2010 Training Microsoft Word 102 Instructor: Debbie Minnerly Course goals Learn how to work with paragraphs. Set tabs and work with tables. Learn about styles Use the spelling and grammar
Microsoft Word 2010 Tutorial
1 Microsoft Word 2010 Tutorial Microsoft Word 2010 is a word-processing program, designed to help you create professional-quality documents. With the finest documentformatting tools, Word helps you organize
Microsoft Word 2010 Mail Merge (Level 3)
IT Services Microsoft Word 2010 Mail Merge (Level 3) Contents Introduction...1 Creating a Data Set...2 Creating the Merge Document...2 The Mailings Tab...2 Modifying the List of Recipients...3 The Address
Handout: Word 2010 Tips and Shortcuts
Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW
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
Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500
Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...
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
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
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
Using Microsoft Office XP Advanced Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.
Using Microsoft Office XP Advanced Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Spring 2004 Contents Advanced Microsoft Word XP... 3 Customizing Word
Microsoft Office Publisher 2010
1 Microsoft Office Publisher 2010 Microsoft Publisher is a desktop publishing application which allows you to create artistic documents as brochures, flyers, and newsletters. To open Microsoft Office Publisher:
WORDPAD TUTORIAL WINDOWS 7
WORDPAD TUTORIAL WINDOWS 7 Quick Access bar Home Tab Triangles = More Commands Groups on the Home tab Right paragraph margin Left paragraph Margin & Indent Paragraphs Ruler Hover the mouse pointer over
Using Word 2007 For Mail Merge
Using Word 2007 For Mail Merge Introduction This document assumes that you are familiar with using Word for word processing, with the use of a computer keyboard and mouse and you have a working knowledge
Getting Started Guide. Chapter 14 Customizing LibreOffice
Getting Started Guide Chapter 14 Customizing LibreOffice Copyright This document is Copyright 2010 2012 by its contributors as listed below. You may distribute it and/or modify it under the terms of either
Microsoft Access 2010 handout
Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant
How to test and debug an ASP.NET application
Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult
WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT
WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live
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
Summitsoft Corporation Font Management System Guide
Summitsoft Corporation Font Management System Guide This guide is distributed with software that includes an end user agreement, this guide, as well as the software described in it, is furnished under
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
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
Section 1: Ribbon Customization
WHAT S NEW, COMMON FEATURES IN OFFICE 2010 2 Contents Section 1: Ribbon Customization... 4 Customizable Ribbon... 4 Section 2: File is back... 5 Info Tab... 5 Recent Documents Tab... 7 New Documents Tab...
Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:
Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that
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
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
Windows, Menus, and Universal Document Shortcuts
Computer Shortcuts Keyboard shortcuts can increase productivity by limiting the number of times your hands need to move away from the keyboard or need to move into uncomfortable positions. The following
Microsoft Outlook Introduction
Microsoft Outlook Introduction Division of Information Technology February 2016 Contents Document Management History... 3 Introduction... 4 Getting Started... 4 Using MS Outlook... 4 What MS Outlook looks
Microsoft Access 2010 Overview of Basics
Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create
Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3)
IT Services Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3) Contents Introduction... 1 Installed Templates and Themes... 2 University of Reading Templates... 3 Further Templates and Presentations...
Enterprise Interface User Guide
Enterprise Interface User Guide http://www.scientia.com Email: [email protected] Ref: 3094 ISO 9001:2000 / TickIT certified Copyright Scientia Ltd 2010 This document is the exclusive property of Scientia
CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL
CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL TABLE OF CONTENTS CORSAIR UTILITY ENGINE OVERVIEW PROFILES 1 9 Introduction 2 Starting the Corsair Utility Engine 2 Profiles: Settings for a Specific Program
Microsoft Outlook 2007 Calendar Features
Microsoft Outlook 2007 Calendar Features Participant Guide HR Training and Development For technical assistance, please call 257-1300 Copyright 2007 Microsoft Outlook 2007 Calendar Objectives After completing
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
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
Content Author's Reference and Cookbook
Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents
Umbraco v4 Editors Manual
Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...
No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers.
This list of shortcut key combinations for Microsoft Windows is provided by ELM Computer Systems Inc. and is compiled from information found in various trade journals and internet sites. We cannot guarantee
How To Use Excel 2010 On Windows 7 (Windows 7) On A Pc Or Mac) With A Microsoft Powerbook (Windows Xp) On Your Computer Or Macintosh (Windows) On Windows Xp (Windows 2007) On Microsoft Excel 2010
ISBN 978-1-921780-70-7 CREATE AND PRODUCE SPREADSHEETS BSBITU202A/BSBITU304A Excel 2010 Supporting BSBITU202A Create and Use Spreadsheets and BSBITU304A Produce Spreadsheets in the Business Services Training
WHAT S NEW IN OUTLOOK 2010 & HOW TO CUSTOMIZE IT
WHAT S NEW IN OUTLOOK 2010 & HOW TO CUSTOMIZE IT THE RIBBON... 2 CONTEXTUAL TABS... 4 THE FILE TAB... 4 DIALOG BOXES... 5 MINIMIZING THE RIBBON... 5 CUSTOMIZING THE RIBBON... 6 CUSTOMIZING THE QUICK ACCESS
Getting Started on the Computer With Mouseaerobics! Windows XP
This handout was modified from materials supplied by the Bill and Melinda Gates Foundation through a grant to the Manchester City Library. Getting Started on the Computer With Mouseaerobics! Windows XP
In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move
WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen
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
Advanced Presentation Features and Animation
There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more
Microsoft Word Tips and Tricks
Microsoft Word Tips and Tricks Viewing the Document There are 4 views for every Word document. These are found in the lower left corner of the screen. The most common is the print layout view. Hold your
Introduction to MS WINDOWS XP
Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The
Microsoft PowerPoint 2010
Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...
Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac)
Passports in Microsoft PowerPoint Quick Guide Created Updated PowerPoint is a very versatile tool. It is usually used to create multimedia presentations and printed handouts but it is an almost perfect
Microsoft Outlook 2007 Introductory guide for staff
Platform: Windows PC Ref no: USER180 Date: 8 th January 2008 Version: 1 Authors: Julie Adams, Claire Napier Microsoft Outlook 2007 Introductory guide for staff This document provides an introduction to
Using PowerPoint Short Course
Using PowerPoint Short Course PowerPoint is a software package that enables you to create presentation slides. Your presentation can include Text and Bulleted points, Tables, Graphs even Flow charts. To
SHAREPOINT 2010 FOUNDATION FOR END USERS
SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your
Digital Marketing EasyEditor Guide Dynamic
Surveys ipad Segmentation Reporting Email Sign up Email marketing that works for you Landing Pages Results Digital Marketing EasyEditor Guide Dynamic Questionnaires QR Codes SMS 43 North View, Westbury
KPN SMS mail. Send SMS as fast as e-mail!
KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.
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
Sendspace Wizard Desktop Tool Step-By-Step Guide
Sendspace Wizard Desktop Tool Step-By-Step Guide Copyright 2007 by sendspace.com This publication is designed to provide accurate and authoritative information for users of sendspace, the easy big file
Microsoft Word 2010 Basics
Microsoft Word 2010 Basics 1. Start Word if the Word 2007 icon is not on the desktop: a. Click Start>Programs>Microsoft Office>Microsoft Word 2007 b. The Ribbon- seen across the top of Microsoft Word.
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
Microsoft Office Access 2007 which I refer to as Access throughout this book
Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access
Importing Contacts to Outlook
Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2
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,
DOING MORE WITH WORD: MICROSOFT OFFICE 2010
University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites
Creating and Using Master Documents
Creating and Using Master Documents Title: Creating and Using Master Documents Version: 0.3 First edition: 09/04 Contents Overview...2 Acknowledgments...2 Modifications and updates... 2 Why use a master
2010 Document Template Administration. User Guide. Document Template Administration
User Guide Document Template Administration Page 1 Document Template Administration and Related Features: Features and Related Topics: 1 Document Template Administration:...3 2 Creating a New E-Mail Document
Reduced Quality Sample
Access 2007 Essentials PART ONE Mobile MOUSe Access 2007 Essentials Version # 1.1 Part One 08/08/2010 11:20 About this Course Microsoft Access is the database application included with Microsoft Office.
