Code to change report caption

J

JimP

I have a table that contains a number of report names. I would like to loop
through the table and set the caption property for each of the reports equal
to the report name.
 
F

fredg

I have a table that contains a number of report names. I would like to loop
through the table and set the caption property for each of the reports equal
to the report name.
Just the reports listed in the table? All Reports in the database?
How many are there?
If there are just a dozen or so, it would be faster to simply open
each report in design view and set the Caption property manually.

Otherwise you'll need code to open each Report in Design View, set the
Caption property to the Name property, close and save the report
changes.
 
Top