divider lines in reports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there a way to have a dividing line between every other record in a
report? It's not apparent to me.

Thanks!
 
Billy,

There are a number of approaches that could be taken here. Try it this
way...
Put a hidden textbox in the Detail section of the report, with its
Control Source property set to:
=1
.... and its Running Sum property set to:
Over All
Let's say you name this textbox RecordCounter.
Put a Line control at the bottom of the Detail section.
Then, in the Format event of the Detail section, put code along these
lines...
Me.YourLine.Visible = Me.RecordCounter Mod 2 = 0

Let us know if that does the job.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top