A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Address Book - New Page for New Letter of the Alphabet



 
 
Thread Tools Display Modes
  #1  
Old December 3rd, 2005, 12:31 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Address Book - New Page for New Letter of the Alphabet

I am wanting to print out my Address Book and would like to force a new page
for each change in the alphabet. Is there a simple way of doing this,
pleaser?
--
GeeJay
  #2  
Old December 3rd, 2005, 04:56 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Address Book - New Page for New Letter of the Alphabet

On Fri, 2 Dec 2005 16:31:03 -0800, GeeJay
wrote:

I am wanting to print out my Address Book and would like to force a new page
for each change in the alphabet. Is there a simple way of doing this,
pleaser?


Are you talking about the Address Book in Outlook? Or in some
(pre-built) Microsoft Access application? This newsgroup is for
Access; if so, you can create a Report grouping by Left([LastName], 1)
with a page break on the group header... if in Outlook, I'd suggest
you post the question in an Outlook newsgroup.

John W. Vinson[MVP]
  #3  
Old December 4th, 2005, 12:50 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Address Book - New Page for New Letter of the Alphabet

Sorry I didn't express myself very well. The Address Book referred to was
actually a Names and Addresses database which I have designed in Access - I
like to dabble! Anyway, thanks for the information, I have now got it
working.
--
GeeJay


"John Vinson" wrote:

On Fri, 2 Dec 2005 16:31:03 -0800, GeeJay
wrote:

I am wanting to print out my Address Book and would like to force a new page
for each change in the alphabet. Is there a simple way of doing this,
pleaser?


Are you talking about the Address Book in Outlook? Or in some
(pre-built) Microsoft Access application? This newsgroup is for
Access; if so, you can create a Report grouping by Left([LastName], 1)
with a page break on the group header... if in Outlook, I'd suggest
you post the question in an Outlook newsgroup.

John W. Vinson[MVP]

  #4  
Old March 1st, 2007, 02:30 AM posted to microsoft.public.access.gettingstarted
Linencrane
external usenet poster
 
Posts: 2
Default Address Book - New Page for New Letter of the Alphabet



"GeeJay" wrote:

Sorry I didn't express myself very well. The Address Book referred to was
actually a Names and Addresses database which I have designed in Access - I
like to dabble! Anyway, thanks for the information, I have now got it
working.
--
GeeJay


"John Vinson" wrote:

On Fri, 2 Dec 2005 16:31:03 -0800, GeeJay
wrote:

I am wanting to print out my Address Book and would like to force a new page
for each change in the alphabet. Is there a simple way of doing this,
pleaser?


Are you talking about the Address Book in Outlook? Or in some
(pre-built) Microsoft Access application? This newsgroup is for
Access; if so, you can create a Report grouping by Left([LastName], 1)
with a page break on the group header... if in Outlook, I'd suggest
you post the question in an Outlook newsgroup.

John W. Vinson[MVP]

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
  #5  
Old March 1st, 2007, 06:00 AM posted to microsoft.public.access.gettingstarted
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Address Book - New Page for New Letter of the Alphabet

On Wed, 28 Feb 2007 18:30:00 -0800, Linencrane
wrote:

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]
  #6  
Old March 1st, 2007, 05:51 PM posted to microsoft.public.access.gettingstarted
Linencrane
external usenet poster
 
Posts: 2
Default Address Book - New Page for New Letter of the Alphabet

Appreciate your help very much. The query produced a Last Name Header.
ThisI inserts the alpha letter in the body of the report. However, I even
though the group footer is designated as "yes", the printed report will not
skip pages when a new initial in the lastname appears. I think the problem
is that I don't understand the instruction: "Group By this field initial."
Under the Sorting and Grouping option, the left column is LastName under
Field/Expression. Am I supposed to type something different in this column?
Thanks again. Bill


"John W. Vinson" wrote:

On Wed, 28 Feb 2007 18:30:00 -0800, Linencrane
wrote:

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]

  #7  
Old March 1st, 2007, 07:34 PM posted to microsoft.public.access.gettingstarted
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Address Book - New Page for New Letter of the Alphabet

On Thu, 1 Mar 2007 09:51:41 -0800, Linencrane
wrote:

Appreciate your help very much. The query produced a Last Name Header.
ThisI inserts the alpha letter in the body of the report. However, I even
though the group footer is designated as "yes", the printed report will not
skip pages when a new initial in the lastname appears. I think the problem
is that I don't understand the instruction: "Group By this field initial."
Under the Sorting and Grouping option, the left column is LastName under
Field/Expression. Am I supposed to type something different in this column?


Yes.

The name of the calculated Initial field.

John W. Vinson [MVP]
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Contact folders not Displaying Information in Address Book Boothtech Contacts 3 November 17th, 2005 09:05 PM
Print page footer only when needed Carl Rapson Setting Up & Running Reports 9 November 14th, 2005 07:57 PM
2 contacts folders Larry Tackett Contacts 21 October 21st, 2005 12:45 PM
Improve the Address Book Bill Molony General Discussions 10 February 17th, 2005 11:49 PM
Display WinXP Address Book in Last Name Order Dennis Boone Contacts 13 December 16th, 2004 12:23 AM


All times are GMT +1. The time now is 01:37 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.