Advice on report design. Psedo Ctrl array or hide show ctrl

gregs

New member
Local time
Yesterday, 20:10
Joined
Aug 19, 2018
Messages
2
I have a report I want to do where rows and columns of boxes will vary. Not sure if I should just put all the boxes on the report and hide them, then loop through my table and make the ones I want visible. Any thoughts on best way to do this?

will be 13-16 rows and 2-10 columns.
1. [] [] [] [] [] []
2. [] [] [] [] [] [] [] []
... and so on
 
what's with the boxes?
you can loop through your table and hide/unhide.
 
How can you 'loop through table'?

These 'rows' are records? These are textboxes with [ ] characters? You can have a conditional statement in the ControlSource. What is the criteria for display of text?
 
Put the boxes on the report and hide/unhide as needed.
Trying to create controls can cause issues because ACCESS limits the total number of controls that could ever be in a procedure. If you were to try creating them at run time, you are setting yourself up for issues.

If you have multiple rows, does that mean one row per record? How many total boxes are you thinking?

Also, is this something that could be done with a graphic that is swapped depending on need?
 

Users who are viewing this thread

Back
Top Bottom