S sqldev Member² Mar 3, 2011 #1 How can I set tab names when using "Copy all to Excel" option? I am trying to export result of 50 some queries and it will be great if there is an option available to set the tab names in excel. Thanks.
How can I set tab names when using "Copy all to Excel" option? I am trying to export result of 50 some queries and it will be great if there is an option available to set the tab names in excel. Thanks.
Marco Kalter Administrator Staff member Mar 7, 2011 #1 There is currently no option for this. I have added this to the list of enhancement requests.
Marco Kalter Administrator Staff member Oct 21, 2011 #1 If you use the "Tab=" directive in the SQL Window, the tab names will be used in Excel as well. For example: Code: -- tab=Departments select * from dept; -- tab=Employees select * from emp; This will create 2 tab pages with the names "Departments" and "Employees".
If you use the "Tab=" directive in the SQL Window, the tab names will be used in Excel as well. For example: Code: -- tab=Departments select * from dept; -- tab=Employees select * from emp; This will create 2 tab pages with the names "Departments" and "Employees".