Word's Mail Merge feature isn't just for creating form letters and address labels; you can use it to quickly personalize virtually any document--no matter how many copies you need to send or print.
For example, suppose you are compiling a set of handouts for a seminar and would like to add a page that welcomes each participant by name to the event. You have created a list of the participants in an Excel file (called Seminar Attendees) with the following column field headers: Attendee_Name, Telephone_No., and E-mail_Address. Follow these steps:
Word will print a personalized set of handouts for each attendee.
If you learn that two people on the list cancelled, there is no need to have Word print their handouts. Before printing, click the Mail Merge Recipients button in the Mail Merge toolbar, and clear the check mark from the records of the people who will not attend the seminar.
Microsoft Excel
If you add a row or two of data to your spreadsheet, you can easily update the Excel chart pertaining to that data by changing the chart's data range. However, if you find yourself continually changing the data range, you may want to set up the chart so that it automatically updates as new data is added.
Suppose you are
keeping track of the maximum temperature for each day in April. You have
entered the first two dates for April in Column A, which contains the field
name Date in A1. The corresponding temperature for each day will appear in
Column B, which contains the field name Temperature in B1. Thus, you enter 55
in B2 for
=OFFSET(Sheet1!$A$2,0,0,COUNTA
(Sheet1!$A:$A)-1)
=OFFSET(Sheet1!$B$2,0,0,COUNTA
(Sheet1!$B:$B)-1)
=SERIES(,Sheet1!Date,Sheet1!Temperature,1)
The chart will update automatically each day with a new temperature. Be sure you don't use Columns A and B for any other data; otherwise, COUNTA will return an incorrect value.
Microsoft Access
IT managers often want to know data points about a particular quarter. If you need to retrieve this information, you can use a Between expression in a query's Criteria field to find all Access records between a range of dates, such as Between #4/1/2005# and #6/30/2005#. Another alternative is to use the DatePart expression, which lets you find all records for a quarter.
Let's say you need to obtain a listing of all employees who were hired the second quarter of 2005. To obtain the answer using the DatePart function, follow these steps:
You can also use the DatePart and Year expressions in a parameter query and allow users to enter the quarter and year themselves.