I need simple instructions to print an address book that starts a new page
every time there is a change in the alphabet for the last name. I am using
Access 2003. I don't understand the response above. Thanks. Bill
Create a Query based on the table of names and addresses. In that
query, in a vacant Field cell, type
Initial: Left([Lastname], 1)
using your last name field; this field will contain A for Ambrose, C
for Crane, Z for Zymbrowski.
Create a Report based on this query. View the Report's Sorting and
Grouping dialog. Group By this field Initial, sorted ascending; make
sure that the group Footer is available. In the Footer's properties
select Force New Page.
John W. Vinson [MVP]