I think all we need is to add another =1 running sum text
box (named txtItemLine) to the Item group header.
Then change the Section text box expression to:
=[Section] & IIf([txtLine]>1 Or txtItemLine>1,"
continued","")
(Note: make sure that theSection text box is **not** named
Section)
Did you figure out where the Name? error is coming from?
I have not tested this in A2007 so I can't guarantee there
is nothing in the repeat section processing that's different
from A2003.
--
Marsh
MVP [MS Access]
Thanks but this doesn't work
The report Headers are:
SectionNo Header
ItemNo Header
DetailSection
ItemNoFooter
SectionNoFooter
within SectionNo Header I want the field [Section] to print with the
added
'continued' if it goes over to two pages.
the problem I have is that Name? comes up in the SectionNo Header
here is what I typed in the ControlSource of txtSection
=[Section] & IIf([txtLine]>1," continued","")
and the Running Sum seems to increment for each detail record
Any ideas?
Thanks again
"Marshall Barton"wrote
Microsoft wrote:
Access 2007
I have a report with a header section which I have set to repeating so
that
it appears on each page.
Is there a way of adding the words "Continued" to the header section
when
it
is repeated on a new page.
eg
Page 1
Section 1
iten
item
item
Page 2
Section 1 continued
item
item
Section 2
item
Page 3
Section 2 continued
item
Section 3
item
Add a text box (named txtLine) to the detail setcion. Set
its control source to =1 and RunningSum to Over Group.
Then the group header section's text box can use an
expression like:
=[grouping field] & IIf(txtLine > 1, " (continued)", "")