Phone directory page break at each change in first character of last name

J

Joseph Greenberg

I am trying to produce a report that will advance to the next page (or
column preferably) when it switches from the "a" names to the "b" name, and
then to the "c" names (etc). How does one do this?
 
M

Marshall Barton

Joseph said:
I am trying to produce a report that will advance to the next page (or
column preferably) when it switches from the "a" names to the "b" name, and
then to the "c" names (etc).


Try using the group header section's NewRowOrCol or
ForceNewPage properties.
 
K

KARL DEWEY

With Marshall's suggestion you need to use Left([NameField],1) in the
group header.
 
J

Joseph Greenberg

Thanks - I ended up adding a grouping variable and having it group on the
first prefix character.

KARL DEWEY said:
With Marshall's suggestion you need to use Left([NameField],1) in the
group header.

--
Build a little, test a little.


Marshall Barton said:
Try using the group header section's NewRowOrCol or
ForceNewPage properties.
 
Top