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

  • Thread starter Thread starter Joseph Greenberg
  • Start date Start date
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?
 
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.
 
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.
 
Back
Top