I have a query with the main fields being Region, System1, System1Comments, System2, System2Comments, System3, System3Comments, …System6, System6Comments
The user previews a report based on two criteria on a form, the Region and the System
To select the region I’m using;
DoCmd.OpenReport stDocName, acPreview,, “[RegionID]= “ & Me.RegionID & “”
And that works ok, my question is if the user selects (for example) system2 from the form, how do I get just Fields for System2 and System2Comments to show up on the report?

The user previews a report based on two criteria on a form, the Region and the System
To select the region I’m using;
DoCmd.OpenReport stDocName, acPreview,, “[RegionID]= “ & Me.RegionID & “”
And that works ok, my question is if the user selects (for example) system2 from the form, how do I get just Fields for System2 and System2Comments to show up on the report?