Monday, February 5th, 2007

Using special characters in Word documents

I write for UK magazines so I often have to use pounds symbols and my mum’s and brother’s surnames have an ‘e’ with an accute accent – unfortunately neither is on my keyboard. So, to make things easier to write, I use a macro to convert a word to a typed character.

Here’s a sample you can use and adapt. It converts the words cents, pounds, degrees and division to their character equivalents and you can use it to replace almost any word or character with another single character, word or phrase of your choosing:

Sub ConvertText()
FindAndReplace “cents”, “¢”
FindAndReplace “pounds”, “£”
FindAndReplace “degrees”, “º”
FindAndReplace “division”, “÷”
End Sub

Sub FindAndReplace(FindThisWord, ReplaceWithWord)
Set EditRange = ActiveDocument.Content
EditRange.Find.ClearFormatting
EditRange.Find.Execute FindText:=FindThisWord, ReplaceWith:=ReplaceWithWord, MatchCase:=0, Replace:=wdReplaceAll
End Sub

Helen Bradley

Sunday, February 4th, 2007

Avoiding that "oops!" moment in Outlook

I think we’ve all had that sinking “Oh no!” feeling when we’ve sent an Outlook email. Either you’ve forgotten to include an attachment or you’ve thought twice about what you said and you want to recall the email. In most cases an email can’t be recalled, but you can delay it being sent.

To add a delay to outgoing emails, use a rule:

  1. Choose Tools, Rules and Alerts and click on New Rule.
  2. Choose the Start from blank rule option and then select Check messages after sending and click Next.
  3. Click Next as all messages will be delayed (but you can set an exception shortly) and click Next and Ok again to confirm the rule will apply to all sent messages.
  4. Choose Defer delivery by a number of minutes and set this to the number to wait – say 2 minutes and click Next.
  5. Now, set an exception for messages that just have to be sent immediately, for example, select Except if it is marked as importance and set this to High.
  6. Click Next, type a name for the rule such as Delayed Send, enable the Turn on this rule checkbox and click Finish.

Now, when you click Send, your messages will be held for 2 minutes before being sent except if you make them High importance.

Helen Bradley

Saturday, February 3rd, 2007

Automatic Excel cell entries

We all love to save time and here’s a great tip to make repetitive cell entries in Excel just so much easier to complete.

You do this by making a drop-down list in a cell so you can select your entry from it rather than having to type it fresh each time.

To do this:

  1. Type the list of items to use in a single column in a spare sheet in the workbook.
  2. Select these cells and choose Insert, Name, Define and type DataForList and click Ok.
  3. Move to the sheet where the data goes, select the cells for the drop-down list and choose Data, Validation, Settings tab. From the Allow list choose List and, in the Source area, type =DataForList and click Ok.

Now, whenever you click a cell in this range you’ll see a list box indicator appear and you can choose the cell entry from the list.

Helen Bradley

Saturday, February 3rd, 2007

Sorting a Word list

While it looks like Word has no tool for sorting a list – only for sorting data in a table, this is not the case and the Table sort tool works just fine for sorting data in a list.

To sort a list, such as a list of names, where each name appears on a new line and the last name is separated from the first by a comma and a space, choose Table, Sort. From the Sort by list, choose Field 1 and then, from the Then by list choose Field 2 and click Ok. This sorts the data into order by last name and then by first name where there are two or more people with the same last name.

If the names appear with the first name then a space and then last name you’ll have to tell Word to differentiate between the two names. To do this, select your list and choose Table, Sort, Options and click the Other option and press the Space bar and click Ok. From the Sort by list, choose Word 2 and then, from the Then by list choose Word 1 and click Ok. This sorts the data into order by last name and then by first name where there are two or more people with the same last name.

If you find that Word 2 doesn’t appear as an option in the Sort by list, click Ok to exit the Table Sort dialog and select the option again.

Helen Bradley

Friday, February 2nd, 2007

Save an Outlook message as a file

When you need to save a copy of an Outlook message simply hold the Control key as you drag it out of your Inbox and drop it into a folder in an open Windows Explorer window or onto the desktop.

The message is saved as a .msg format file that you can open again at any time by double clicking it in Windows Explorer. When you do this, the email itself opens and can be read, even if Outlook is not open.

To save a message as an .html file, open it and choose File, Save As and type a name for it and choose a location for it.

Helen Bradley

Thursday, February 1st, 2007

Align anything in Word

When you want to make sure everything on a Word page lines up properly, display the gridlines.

To do this, first display the Drawing toolbar then choose Draw, Grid and choose the Display gridlines on screen checkbox. Set the Use Margins option to start the grid aligned on the left and top margins. Set the value to 1 for small squares and to 2 or 3 for a larger grid.

If you select the Snap Objects to Grid checkbox all objects will automatically line up against the grid.

If you don’t want this to be the case, press the Alt key as you drag an object and it will be freed from snapping to align to the grid.

Helen Bradley

Page 4 of 41234