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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Design of a Number of Reports at Once

Status
Not open for further replies.

charcurley

Programmer
Aug 16, 2001
29
Hello. I have to go into the design of about 100 reports to check on all fields on the reports. (The reports are in a letter format). For example: I have to update
[Company]with company().

I have started to work my way thru them but thought there may be I could do in VBA code that would make life easier?

Any help would be appreciated.

Thanks.


 
Hmm. Maybe use AllReports object and Report object to loop through and set the field in each. You should be able to get to the field name and assign it the command. I don't know the code to give you, though. Maybe something like

For Each rpt In reports
rpt.Company = company()

Dunno for sure.
 
Thanks for replying so quickly. You know I found a great little shareware program that does exactly what I wanted to do. It works great and I'm giong to go online and register it because it will definitely come in handy again I'm sure.

Again thanks for the info.. I was struggling along.
 
Can you post the info for the shareware program? I would like to know more about it.

Thanks!

Peggy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top