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

Renaming a report tab?

Status
Not open for further replies.

mortac8

Programmer
Jun 7, 2001
12
US
Is there any way to use a variable in the naming of each report. For example, I have 4 report tabs in my BO file. When I double click the tab to rename it, is there any way to use a dimension or measure as that name? Thanks.
 
You must use VBA to programatically change the name of the tab. Using busobj.ActiveReport.Name = "New tab name" will change the name of the active tab. You'll need to use an Application variable to make this refer to something in your query. Not sure how to do this though. But if your original question was can I easily make a tab name become and object name, then the answer is no, you have to use VB.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top