I am using CR XI, Access..
I have grouped by Type
FirstName LastName Type
Sam Peters Contractor
John Smith Contractor
Count of Contractors: 2
John Doe Employee
Paul Smith Employee
Count of Employees : 2
and so on..
I want the column header to appear only once on the page, and should appear on every page
I tried the following
In the page header I have this formula
@reset
---
whileprinting records;
numbervar count:= 0;
In the group footer I have
@incrementCount
whileprinting records;
numbervar count:= count + 1;
In the group header (where these column headers are placed) in the suppress section I have the following code
{@incrementCount} <> 0
I do not see any column headers.. I have the "Repeat group header on each page" checked
Where is the problem ?