Report Creation with Levels

  • Thread starter Thread starter NigelP
  • Start date Start date
N

NigelP

Im trying to create a report without activeX controls,
tech don't seem to want to fix it. but I need to create a
leveled report ie

The whole report went on this Date

All these records go by VicFast
Record 1
Record 2
All these Records go by C/ Please
Record 3
Record 4

I know the wizards allow you to do this, and i've
forgotton what it is called. As i have no scripting
knowledge is there any way i am able to do this

Nigel
 
To create a report without the wizards:
1. Create a blank report.

2. In the Properties box, set its Record Source.

3. In the Sorting And Grouping box, set your group levels, with a Group
Header for the "VicFast" field.

If you are trying to script this in VBA, use CreateReport(), add the
headings to the Section() array, and set the ControlSource of the sections.
 
Back
Top