Advertisement

To print: Select File and then Print from your browser's menu
-------------------------------------------------------------- This story was printed from ZDNet Asia. --------------------------------------------------------------
Clear an Access combo box for entering the next record
By Mary Ann Richardson and Susan Harkins
Thursday, June 04 2009 11:56 AM
URL: http://www.zdnetasia.com/techguide/office/0,39044682,62054628,00.htm

Microsoft Access


Clear an Access combo box for entering the next record

You've created a data entry form that uses a combo box, as shown in Figure A. However, when the user clicks the next record button, the previous record's combo box selection is still visible.

Figure A

To clear the entry for entering the next record, follow these steps:

  1. Open the form in Design view.
  2. Click the Form properties button at the top left of the form.
  3. In the Event tab, click the On Current property box and select Event Procedure (Figure B).

Figure B

  1. Click the Build button.
  2. Enter the following code at the prompt:
Private Sub Form_Current()
On Error Go to ErrorHandler
Me![cboname of box]= Null
ErrorHandlerExit
Exit Sub
ErrorHandler:
MsgBox "Error No: " & Err.Number &": Description: " & Err.Description
Resume ErrorHandlerExit
End Sub
  1. Press [Alt]+Q

Now when the user moves to the next record, the previous selection will not appear.



Microsoft Excel


Add data to an Excel worksheet from a Word table

If you need to analyze data that exists only in a Word table, you can use Excel's Import External Data feature to update your worksheet whenever the data within the Word table changes.

For example, at the end of the month you receive an e-mail with an updated listing of all YTD invoices in a Word document (Figure A).

Figure A

You would like to use Excel's tools for analyzing the data, but you don't want to spend time entering the new data each month. Follow these steps to have Excel update your worksheet for you:

  1. Open the copy of the Word document you received as an e-mail attachment.
  2. Select the table.
  3. Go to Insert | Table and click on Convert Table To Text. In Excel 2007, click the Layout Tab under Table Tools and click Convert To Text in the Data group.
  4. Click OK.
  5. Go to File | Save As and save a plain text copy of the file as Import_table.txt.
  6. Open a blank workbook in Excel.
  7. Go to Data | Import External Data and click Import Data. In Excel 2007, go to Data | Get External Data | From Text (Figure B).
Figure B

  1. Navigate to and select Import_table.txt .
  2. Click the Import button.
  3. Click Next button twice (Figure C).
Figure C

  1. Click Finish.
  2. Click OK.
  3. Save the workbook (Figure D) as Import_from_Word.

Figure D

Now let's say you receive an update to the Word document (Figure E).

Figure E

Update the data in the Import_from_Word file by following these steps:

  1. Open the document containing the updated table.
  2. Go to Insert | Table and click on Convert Table To Text.
  3. Go to File | Save As and save a plain text copy of the file as Import_table2.txt.
  4. Close Word.
  5. Open the Import_from_Word workbook. In Excel 2007, click the Options button and then select the Enable button and click OK.
  6. Go to Data | Refresh Data. In Excel 2007, click the Data tab and then click Refresh (Figure F).

Figure F

  1. Navigate to and select the Import2_table.txt document.
  2. Click the Import button.

The new data has now been added to your worksheet, as shown in Figure G.

Figure G



Microsoft Word


Return quickly to document text after inserting a footnote

When you insert a footnote or endnote, Word moves the insertion point to the footnote/endnote area. You enter the appropriate text and then what? Word seems to leave you stranded. There’s no dedicated method that returns you to the main document precisely where you were working when you inserted the footnote or endnote.

There is, however, a keyboard shortcut that you can use: [Shift]+[F5].

The [Shift]+[F5] keyboard shortcut cycles through your last edits. After entering the footnote or endnote text, just press [Shift]+[F5] and most of the time, it will take you directly to the insertion point.

However, it's important to note that this shortcut does not take you back to the point where you inserted the current footnote or endnote. Rather, it will take you back to your last edit.

Almost every time, the insertion point and the last edit spot will be the same--that's why this trick works. If the shortcut takes you some place other than the insertion point, try pressing [Shift]+[F5] until you reach the right spot.