jcade4 said:
I need for my report to list data only if there is more than one record in a
group.
Not very elegant but relatively straightforward. Add a text
box (named txtGrpCnt) to the group header section and set
it's control source expression to =Count(*)
Then add code to the group header section's Format event.
Assuming the group has both a header and footer:
Me.Section(5).Visible = (txtGrpCnt > 1)
Me.Section(0).Visible = (txtGrpCnt > 1)
Me.Section(6).Visible = (txtGrpCnt > 1)