Tech

Guides
 

Move text to the next column permanently

By Mary Ann Richardson and Susan Harkins, Special to ZDNet Asia
Thursday, June 11, 2009 11:38 AM
Word may not be a full-featured layout program, but it does offer some tools that let you control the position of text on a page. Here's how to use a column setting to get text where you want it.

Microsoft Word


Move text to the next column permanently

You've just finished typing the text in columns for the newsletter shown in Figure A. Now you'd like to move some text over from the first column to the second column so that you can insert a picture in that space.

You could use the Enter key to move the text, but any edits to the first column will likely move the text back into the first column or push it farther down the second column.

Figure A

Follow these steps to avoid having to reposition the text again:

  1. Click at the beginning of the block of text you want to reposition in the next column.
  2. Go to Format | Columns. In Word 2007, click the Page Layout tab and then click Columns in the Page Setup group and select More Columns.
  3. Select This Point Forward from the Apply To drop-down list (Figure B).

Figure B

  1. Select the Start New Column check box.
  2. Click OK.

You can now insert your picture into the first column without having to reposition the text in the next column, as shown in Figure C.

Figure C



Microsoft Access


Automatically fill in Access text boxes based on a combo box selection

Your employees would like a quick way to look up each others' business phone numbers. They want to be able to choose an employee's last name from a list and have Access output the employee's first name and phone number.

To create this form, follow these steps:

  1. Open the Employees database.
  2. Click Forms under Objects in the Database window, click the New button, and then click OK. In Access 2007, click the Create tab and then click Forms Design in the Forms group.
  3. Click the Combo box control in the Controls toolbox. In Access 2007, click the Design tab under Forms Design Tools and click Combo Box (Form Control) in the Controls group.
  4. Click and drag in the form where you want to locate the control.
  5. Click Next.
  6. Select the Employees table and then click Next.
  7. Select the Employee ID, Last Name, First Name, and Phone Number fields.
  8. Click Next.
  9. Click the drop-down arrow in the first text box and click Last Name.
  10. Click Next.
  11. Adjust fields as necessary and then click Next.
  12. Enter Employee Contact Form and click Finish.
  13. Click in the Combo Box label control and change the label to Last Name.
  14. Click the Text Box control in the Controls toolbox (Access 2003) or the Controls group (Access 2007).
  15. Click and drag to create an unbound text box control below the combo box.
  16. Change the text box label to First Name.
  17. Click the Text Box control in the Controls toolbox (Access 2003) or the Controls group (Access 2007).
  18. Click and drag to create an unbound text control below the first text box.
  19. Change the text box label to Phone Number (Figure A).

Figure A

  1. Right-click the combo box and select Properties.
  2. Click in the On Change property box in the Event tab and select Event Procedure.
  3. Click the Build button and enter this code (Figure B):
Me.Text19 = Me.Combo17.Column(2)
Me.Text21 = Me.Combo17.Column(3)

Figure B

  1. Add an error handler to the On Change event subroutine.
  2. Press [Alt] + [Q].

Employees can now use this form to scroll through a list of employees sorted by last name, and Access will immediately fill in the person's first name and business phone number (Figure C).

Figure C



Microsoft Excel


Always open Excel workbooks using a specific zoom factor

Sharing a workbook helps you and other users work smarter, but you often have to contend with settings you don't like that are left behind by other users.

For instance, people seldom work at the same zoom percentage. Depending upon their hardware and other factors, people often reduce or increase the zoom setting.

The problem is that Excel saves the zoom factor with the workbook. Regardless of how many times you reset and save the zoom factor, it's just as likely to be different the next time you open the workbook because other users are also saving their favorite settings.

The most efficient solution is to determine the most common zoom factor and let the workbook reset it each time someone opens the workbook. Some people will still set the zoom factor to something else, but most people will find the automatic setting adequate.

Simply add the following macro to the workbook's This Workbook module:

Private Sub Workbook_Open()
  ActiveWindow.Zoom = 100
End Sub

Be sure to save the workbook after adding the macro. You can replace 100 with whatever zoom factor is the most common. Regardless of the setting each user saves with the workbook, Excel will reset it to 100 (or whatever zoom factor you specify in the macro) each time a user opens the workbook.

You can use this technique to standardize a number of common environmental settings.



WORTHWHILE?

0

0 votes
Blog

Talkback 0 comments

There are currently no comments for this post.


Guest user

Guest user

Level: 
Joined: —
Already a member? Log in »



 

Loading...

Whitepapers/Case Studies

Downloads

Microsoft Office Suite News



Tech Jobs Now!

Tags

  1. cell
  2. check box
  3. database
  4. dialog box
  5. figure
  6. font
  7. microsoft access
  8. microsoft corp.
  9. microsoft excel
  10. microsoft excel 2007
  11. microsoft office
  12. microsoft powerpoint
  13. microsoft vba
  14. microsoft word
  15. microsoft word 2007
  16. mouse
  17. tool
  18. tools menu
  19. window