PowerPoint 2003 comes with several design templates that you can use to add an artistic design to your slides. If you want a wider variety of designs from which to choose, consider downloading additional design templates from Microsoft’s web site.
If you want a more unique design for your presentation, or if you need to include your company colors and logo on each slide, consider creating your own design template. (This is more of a mini-lesson than a quick tip, but it’s well worth the time and effort.)
Using the Slide Master
To create your own design template, you need to know how to use the PowerPoint slide master. If you’ve never used this feature before, you can access it by selecting View | Master | Slide Master. The slide master is the template on which your presentation is based. It contains background graphics, formatting for titles, bulleted lists, header/footer contents, etc.
You can use the Slide Master to make global changes in your presentation. For example, suppose the design template you selected formats all slide titles in white text, and you want all titles to be blue. You can make this change by opening the slide master and selecting blue as the font color for the title placeholder. When you close the slide master and return to your presentation, all titles will be blue.
Who Cares about the Slide Master?
You do, if you plan to create your own design template. That’s where you tell PowerPoint which background graphic to use, as well as how to format titles, bulleted lists, graphical objects, etc.
Let’s Create a Design Template
Let’s say you need to create a design template for your company. It must include the company logo, the company’s colors as a gradient background on all slides, and it must appear in the Slide Design Task Pane so that you can apply it to any new presentation you might create.
Here’s how:
- Create a new blank presentation.
- Select View | Master | Slide Master to view the slide master. (PowerPoint will also open the Slide Master View toolbar, which you can use to close Slide Master View.)

- Change the background by selecting Format | Background. Use this to select a background color, a blend of two colors (gradient), a texture, or a picture.
- Add the company logo by selecting Insert | Picture | From file…
- Drag the logo to place it on the slide and size it appropriately.
- Select View | Header and Footer to add the date and/or slide number to each slide.
- Close Master Slide View.
- Save the presentation as a design template (*.pot).

- PowerPoint will automatically save the template in C:\Documents and Settings\username\Application Data\Microsoft\Templates. Do not save the template in a different location; it needs to be in this folder in order for it to show up in the Slide Design Task Pane.
- Close the presentation.
Using Your New Design Template
- Create a new presentation, or open an existing one.
- Select Format | Slide Design to open the Slide Design Task Pane.
- Scroll through the design templates to find the one you created. (If you don’t see it, close PowerPoint and re-open it.)
- Apply your design template to the active presentation by clicking on it.
- You can also use the drop-down menu to apply the design to one slide, all slides, or to use it as the default design for all new presentations.
Posted by: Don on: February 9 2006 • Categorized in: Excel
Most of you probably know about the Extend box in Excel, even if you don’t know its name. The Extend box is the little square at the bottom right corner of the current cell or range. When you put your cursor on it, the cursor changes to a small black cross and the fun begins.
Extending a Cell’s Contents
The simplest way to use the Extend box is to drag it, either down or across, over a range of cells. When you let go, the range will fill with the contents of the original cell or range, based on these rules:
- Text will be copied
- A single number will be repeated.
- A range of numbers will create a series based on the differences between the numbers
- A formula will be copied and all cell references will change appropriately.
-
A day, month, or quarter name will be extended into a list: Monday will be followed by Tuesday, Wednesday, etc.
- A custom list will be expanded. (You can create custom lists by highlighting the range, then selecting Tools | Options | Custom Lists and adding the range.)
Smart-Tag Options
With the advent of Smart Tags in Excel 2002, when you finish extending, a Smart Tag will appear. Clicking the Smart Tag will display a list of choices that will vary based on the type of data you are extending:
- Text or formula will let you extend with or without formatting, or just the formatting.
- Numbers will let you create a series (1, 2, 3, etc.) and extend with or without formatting.
- Dates will let you fill days, weekdays, months, years, with or without formatting.
Right-Dragging the Extend Box
If you extend by right-dragging, you’ll get a Quick Menu with the Smart Tag options as well as a link to the Fill Series dialog box, where you can create quite complex series, if you need them.
Double-Clicking Magic

Often, when you are working with a list, you often need to add a formula, as shown in the top picture above. If you double-click the formula (in C2 and D2 above), Excel will extend this formula to the length of the list, as shown in the picture on the bottom. (In our example, we used a range of two cells. We could have done C2 and D2 individually.) This is especially helpful if you list is a long one. Be aware that it will stop at the first blank cell in the column to the left.
Posted by: Mannie on: January 10 2006 • Categorized in: Access
There are a number of ways to calculate the time between two dates in Access. You can use a calculated field in a query, a calculated control in a form or report, or you can use a VBA procedure to perform the calculation.
If you need to calculate the number of days between two dates, the syntax is:
=[One date field] - [Another date field]
You can use functions to calculate the number of years between two dates:
=Year([One date field]) - Year([Another date field])
You can also use the DateDiff() function, which uses an argument to determine how the time interval is measured.
For example,
=DateDiff("q", Date1, Date2)
returns the number of quarters between the two fields. (In the example above, Date1 would be subtracted from Date2.) The other intervals that can be used in this expression are as follows: “yyyy” – Years, “m” – Months, “y” – Day of Year, “d” – Day, “w” – Weekdays, “ww” – Weeks, “h” – Hours, “n” – Minutes, “s” – Seconds.
Naming Date Fields
When naming date fields in Access, avoid naming a field Date, since this is a built-in Access function. Instead, consider using more descriptive names, such as BeginDate, HireDate, etc.
Hard Coding a Date
When calculating with dates in Access, you can hard-code an arbitrary date by using the following syntax:
#mm/dd/yyyy#
For example, you would use the following code to subtract a date from Jan. 1, 2006:
=#1/1/2006# - [Date Field]
Posted by: Mannie on: January 10 2006 • Categorized in: Access
Here are some useful shortcuts for Microsoft Access:
- Undo typing: CTRL+Z or ALT+BACKSPACE
- Undo changes: Press ESC once for current field, ESC twice for current record
- Insert the current date: CTRL+SEMICOLON (;)
- Insert the current time: CTRL+COLON (:)
- Insert the default value for a field: CTRL+ALT+SPACEBAR
- Insert the value from the same field in the previous record: CTRL+APOSTROPHE (‘)
- Add a new record: CTRL+PLUS SIGN (+)
- Delete the current record: CTRL+MINUS SIGN (-)
- Recalculate fields: F9
If you find yourself repeating the same searches in Outlook, you can create a custom search, save it, and execute it again by simply re-opening the saved search.
Here’s how:
- Open the Advanced Find dialog box (Control+Shift+F, or click the Find button, then selection Advanced Find… from the Options menu.)
- Enter your search options (for example, all mail with the word “password” in the message body).
- When the search is finished, select File | Save Search…
Name the search something you’ll recognize later, such as “messageswithpassword.â€
(You might want to create a folder in My Documents called “Outlook Searches.”
- Click OK, and close the Advanced Find dialog
- Open Advanced Find again.
- Select File | Open Search…
- Select your saved search, and click OK. Outlook will repeat the search.
If you find that it takes too long to switch from one email message to another, try turning off the Outlook “feature” that displays a Name Smart Tag in the message header and checks the user’s Instant (Windows) Messenger status.
To do so:
- Select Tools | Options.
- Click the Other tab.
- Remove the check from Enable the Person Names Smart Tag. (The Display Messenger Status in the From fieldoption will automatically be disabled if the Names Smart Tag is not available.)
Posted by: Mannie on: November 11 2005 • Categorized in: Excel
This is a situation that often comes up in our Excel classes:
“I need to add data to my spreadsheet, but I want to lock the cells that contain formulas so they don’t get overwritten.”
It’s easy to Protect an entire spreadsheet from the Tools | Protection | Protect Sheet… menu item. However, this option protects all the cells in the spreadsheet.
Unless…you first unlock the cells you want to remain editable. Here’s how:
- Select the cells you want to be editable.
- Select Format | Cells, and click the Protection tab:

- Clear the check from the Locked checkbox.
- Click OK.
- Select Tools | Protection | Protect Sheet…

- Leave all the default items checked. (If you wish, you can add checks to any features you want users to access.) Add a password if you want to prevent a user from Unprotecting the sheet from the Tools menu.
- Click OK.
- Users will now be able to edit only the cells that are unlocked. If a user tries to edit a locked cell on a protected worksheet, he/she will see the following message:
Not everyone who visits your Web site can see the page. Some people with visual disabilities use screen readers to have the page read to them. For this reason, it’s important that you include alternate text with each of your images.
To add alternate text to your images:
- Select the image.
- Click into the Alt Text field in the Property Inspector and type a phrase that identifies or describes the image.
If you are sufficiently compulsive, you will remember to do this every time you add an image to a page.
If you tend to slack off when it comes to details like this, you can set a preference in Dreamweaver that forces you to add alternate text every time you add an image to a page.
To turn on the Image Accessibility prompt:
- Select Edit | Preferences.
- Select Accessibility from the Category List.
- Add a check to the Images checkbox in the Show attributes when inserting list.
- Click OK.
- When you add an image to a page, Dreamweaver will display the following prompt:

The screen reader reads the information you enter in the Alternate text field. You should limit your entry to around 50 characters. For longer descriptions, consider providing a link, in the Long description field, to a file that gives more information about the image.
Linking to a named anchor lets you link to a specific place on a page.
Linking to a named anchor requires two steps: (1) Create the anchor. (2) Link to it.
To create an anchor on a page:
- Click into the page where you want the anchor to appear.
- From the Common category on the Insert bar, click the Named Anchor button (or select Insert | Named Anchor from the menus):

- Dreamweaver will place an anchor icon in the document. (The icon will not be visible when the page is viewed in a browser.)
To link to a named anchor on the same page:
- Select text or an image.
- Click into the Link field in the Property Inspector and type the name of the anchor, preceded by the pound sign (#). The sample below links to the
heading3 anchor on the same page:
To link to a named anchor on a different page:
- Select text or an image.
- Click into the Link field in the Property Inspector and type the name of the file followed by a pound sign (#) and the named anchor. The sample below links to the
heading3 anchor on the products1.htm page:
Posted by: Mannie on: November 11 2005 • Categorized in: Word
If you often work with several docs open in Word, you’ll love this tip!
Hold down the SHIFT key when you click on the File menu. Close and Save will appear as Close All and Save All, allowing you to close or save all open files with one click!
(Note: If you select Close All, Word will still prompt you to save changes for each unsaved file.)
|
|
|