Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delete report group level

Status
Not open for further replies.

ggoldberg

MIS
Feb 7, 2003
27
I know how to use CreateGroupLevel in VBA to customize a report 'on the fly', but how to I delete a group level from an existing form using VBA.

Thanks,

Gerry Goldberg
 
I haven't tried it but I think you could try "recreating" the group level but with both header and footer set to false - this won't delete the grouping as such but will at least hide it from view, i.e.

Code:
CreateGroupLevel(reportName, expressionName, False, False)
[pc2]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top