J
Jake
I would like a group header not to show only for the first record and then
show that header for rest of the report. The following code works:
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If lngTenCount.Value = 1 Then ' lngTenCount is a unique counter field
identifying 1st record that suppresses header
GroupHeader0.Visible = False
Else
GroupHeader0.Visible = True
End If
End Sub
But it doesn't turn the header back on after the first record. It displays
the header when another field in the group changes around record 9. What am
I doing wrong? Thanks for you help!
Jake
show that header for rest of the report. The following code works:
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If lngTenCount.Value = 1 Then ' lngTenCount is a unique counter field
identifying 1st record that suppresses header
GroupHeader0.Visible = False
Else
GroupHeader0.Visible = True
End If
End Sub
But it doesn't turn the header back on after the first record. It displays
the header when another field in the group changes around record 9. What am
I doing wrong? Thanks for you help!
Jake