Formatting of Headers

  • Thread starter Thread starter Eddy
  • Start date Start date
E

Eddy

I have a report with 6 headers. I also have code behind each headers On
Format property. As I halt the code the progression seems strange. I mean
it seems to format Header 1 then as I press F8 to move through the code it
move the the On Format of Header 4 then Header 6 and so on. It doesn't seem
to move through the page headers top to bottom. Am I wrong or how can I
find out the progression of the report formatting.

Thanks
 
To get an accurate idea of the sequence, enter code in the On Format events
like:
Debug.Print "Formatting: Header 4"

You should then be able to open the debug window to review the results.
 
Back
Top