Retrieve Caption (Name) of the open report

  • Thread starter Thread starter BobV
  • Start date Start date
B

BobV

Group:

I need help with the VBA code to retrieve the caption (name) of a report
that is currently open.

Any help will be greatly appreciated.

Thanks
BobV
 
The name of the first report is:
Reports(0).Name
and its Caption property is:
Reports(0).Caption
 
Allen:

Thank you so much!

BobV

Allen Browne said:
The name of the first report is:
Reports(0).Name
and its Caption property is:
Reports(0).Caption
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top