Presentation is loading. Please wait.

Presentation is loading. Please wait.

Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-1 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro-

Similar presentations


Presentation on theme: "Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-1 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro-"— Presentation transcript:

1 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-1 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Microsoft Excel 2007 – Level 2 AUTOMATING REPETITIVE TASKS AND CUSTOMIZING EXCEL

2 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-2 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Performance Objectives Record and run a macro Save a workbook as a macro-enabled workbook Create a macro that is run with shortcut keys Change the macro security settings Edit and delete a macro Save a macro to the Personal Macro Workbook for use in all workbooks Create and delete a custom fill series Pin and unpin a frequently-used file to the Recent Documents list Add and remove buttons for frequently-used commands to the Quick Access toolbar Hide the ribbon to increase space in the work area Customize the work area to hide gridlines and column and row headers Create a custom workbook theme Create and use a template

3 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-3 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Creating a Macro A macro is a named series of instructions that can be recalled by –selecting a menu item –pressing a particular key combination Each macro must have a unique name –must begin with a letter –can be a combination of letters, numbers, and underscore characters with no spaces –may not be the same as a cell reference Macro instructions are stored as Visual Basic (VBA) instructions either with the current workbook or available to all other workbooks

4 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-4 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary The Macro Recorder Turn ON the Macro Recorder to record the series of instructions The Macro Recorder works much like a tape recorder to record every keystroke and mouse click Click Top button views existing macros Bottom button opens this list OR click the Macro Recorder button in the left side of the Status bar

5 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-5 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Recording a Macro View tab, Macros button, Record Macro Enter a descriptive name Enter the letter to press with the Ctrl key to execute the macro -Case sensitive Enter a description Click Select where the macro is to be stored Record Macro dialog box

6 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-6 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Recording a Macro…/2 Click to Stop Recording HINTS Save before running a macro. Before starting the macro, consider if the location of the active cell is a factor. With the Macro Recorder ON, Type information, press the Enter key, click menu items, use shortcut keys – all keystrokes and most mouse clicks will be recorded

7 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-7 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Saving the Macro Must save the workbook as ‘macro-enabled’ Saving as type ‘Excel Macro- Enabled Workbook’ creates a.xlsm workbook which includes Visual Basic (VBA) code for the macro Click OR In Save As dialog box

8 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-8 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Running (Playing) a Macro Double-click the macro Select the macro, then click Run OR View tab, Macros button (top button)

9 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-9 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Running a Macro…/2 Click to edit the shortcut key and the description If a keyboard shortcut has been assigned to the macro, the macro can be run by simply pressing its shortcut key combination

10 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-10 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Enable Macros in a Workbook Excel can place a Security Warning above the worksheet when opening a workbook that contains macros Click Read carefully, click ‘Enable this content’, and click OK Only enable the content when the workbook is from a trusted source

11 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-11 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Changing Macro Security Settings Click Choose desired settings

12 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-12 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Changing Macro Security Settings/2 Macro SettingDescription Disable all macros without notification All macros are disabled; security alerts will not appear Disable all macros with notification All macros are disabled; security alert appears with the option to enable content if you trust the source of the file. (Default setting) Disable all macros except digitally signed macros All macros not digitally signed are disabled; security alerts do not appear. If digitally signed by a publisher in the Trusted Sources list, the macro is allowed to run. If digitally signed, but not in the list, a security warning will appear. Enable all macros (not recommended) All macros are allowed; security alerts do not appear. Macro Security when opening workbooks …

13 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-13 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Editing a Macro Click to edit the macro using the Visual Basic Editor Select the macro View tab, Macros button Often easier to delete the macro and re-record it

14 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-14 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Editing a Macro…/2 Beginning of macro Comment lines Statements are executable lines of code End of macro

15 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-15 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Saving a Macro to the Personal Macro Workbook Macros are stored by default in the current workbook, and are available to all other open workbooks as long as the current workbook is open. Macros stored in the Personal Macro Workbook are available whenever Excel is open on the current computer. When creating the macro, click the down arrow and choose Personal Macro Workbook

16 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-16 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Deleting a Macro Select the macro Click to delete the selected macro View tab, Macros button (top button)

17 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-17 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Creating a Custom List Series Use to fill a series of cells with the Fill handle or to create a list with an unusual sort order Click

18 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-18 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Creating a Custom List Series /2 Import the list 1. Type entries into a worksheet 2. Select the range containing the entries 3. Open Excel Options, Edit Custom Lists 4. Click Import 5. Click OK

19 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-19 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Creating a Custom List Series /3 Add a list by typing it in 1. Open Excel Options, Edit Custom Lists 2. Select NEW LIST 5. Click OK 4. Click Add 3. Type the list here, one entry per line

20 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-20 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Deleting a Custom List 1. Open Excel Options, Edit Custom Lists 2. Select the list 3. Click Delete 4. Click OK A warning message is displayed

21 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-21 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Pinning Workbooks to the Recent Documents List Click the Office button to see the Recent Documents list Click the pin of the frequently- used workbook Click again to unpin it

22 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-22 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Customizing the Quick Access Toolbar Quick Access Toolbar Click Toggle on or off Click to re-order, add, or delete commands

23 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-23 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Minimizing the Ribbon Use to provide more Excel work area space To toggle the ribbon on or off Double-click a tab Click the ‘Customize Quick Access Toolbar’ button and click ‘Minimize the Ribbon’ OR Press Ctrl + F1

24 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-24 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Creating Custom Themes A Theme is … a combination of theme colors, theme fonts, and theme effects … stored in the Themes drop- down gallery Page Layout tab

25 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-25 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Modifying Theme Colors Page Layout tab, Theme Colors Click to create your own Change Colors, Name, and Save

26 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-26 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Modifying Theme Fonts Page Layout tab, Fonts Click to create custom font Choose Heading font and Body font Type a Name and click Save

27 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-27 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Applying Custom Theme Colors & Fonts Page Layout tab, Colors Custom Color set appears at top of Colors list Custom Font set appears at top of Fonts list

28 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-28 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Applying Theme Effects Page Layout tab, Effects Theme effects are sets of lines and fill effects Although you cannot create your own set of theme effects, you can choose the one that you want to use in your own document theme

29 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-29 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Saving a Workbook Theme Page Layout tab, Themes After setting the colors, fonts, and effects, click Save Current Theme… Enter Name and click Save

30 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-30 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Resetting to Template Theme Page Layout tab, Themes To reset the theme for the current document, click

31 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-31 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Deleting Custom Themes Page Layout tab, Themes To delete a custom theme, right-click the theme and click

32 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-32 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Saving a Workbook as a Template A template contains standard text, formulas, and formatting for non-changing cells and formatting for cells that will change Examples of templates: invoice, purchase order, expense form, time card 1. Create a workbook that contains all the standard data, formulas, and formatting 2. Clear the data from cells that will have variable information, but leave formatting 3. Save As the workbook, changing the Save as type to Excel Template (.xlst)

33 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-33 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Using a Custom Template With the prepared workbook open, click Not this button then click Double-click desired template

34 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-34 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Deleting a Custom Template Click Not this button then click Right-click desired template and click Delete

35 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-35 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How do you record a macro? Record Macro button in the Status bar OR Features Summary Click

36 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-36 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How do you run a macro? Features Summary View tab, Macros button Double-click the macro Select the macro, then click Run OR Press the macro’s shortcut keys OR

37 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-37 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How do you delete a macro? Features Summary Select the macro Click to delete the selected macro View tab, Macros button

38 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-38 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How do you view or change the Macro Security options? Click the Office button, Excel Options Click Trust Center in the sidebar, Click ‘Trust Center Settings’ – Click Macro Settings in the sidebar Features Summary

39 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-39 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How can you open the Custom Lists dialog box? Features Summary Open Excel Options and click Edit Custom Lists

40 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-40 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary After opening the Custom Lists dialog box, how do you create a custom list? Click NEW LIST, click Add and type in the entries OR Features Summary Import the list from a range in a worksheet

41 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-41 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary What must be changed to create a custom theme set? Theme colors, Theme fonts, and Theme effects Features Summary

42 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-42 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How can you save your custom theme set? Page Layout tab, Themes After setting the colors, fonts, and effects, click Save Current Theme… Type name and click Save Features Summary

43 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-43 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How do you change a custom theme after it has been saved? Page Layout tab, Colors Right-click custom color or font set and choose Edit… Page Layout tab, Fonts OR Click Features Summary

44 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-44 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary How do you create a template? Create a workbook with preset text, formulas, and formatting, format and clear cells to be filled in, and Save AS the workbook as a template Features Summary

45 Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-45 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro- enabled workbook Save as a macro- enabled workbook Change macro security Change macro security Edit, delete macros Personal Macro Workbook Personal Macro Workbook Custom Lists Pin & unpin frequently used files Pin & unpin frequently used files Customize Quick Access Toolbar Customize Quick Access Toolbar Hide the Ribbon bar Create a custom workbook theme Create a custom workbook theme Create & use a template Create & use a template Features Summary Coming Next IMPORTING, EXPORTING, AND DISTRIBUTING DATA


Download ppt "Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 7 BACKNEXTEND 7-1 LINKS TO OBJECTIVES Record & run a macro Record & run a macro Save as a macro-"

Similar presentations


Ads by Google