Is it possible to print ONLY the spreadsheets names (the names at the bottom on the tabs)? I have a workbook with quite a lot of spreasheets (over 500, er, it's a catalogue of music... CDs, what's on them, composors, conductors, movements, times etc.) and would like to do a print out of just the names of, not all and every part of the workbook. Yes I know I should more than likely do this in Access, but I started it on a Commidore 64 years ago and have just been 'converting' it as I go along. Latest version is in Excel 2007. So esentially it's a '2D database' done using spreadsheets, rather than a '3D database' done in Access. Many regards.
feedback
|
|
Using VBA you can pretty easily dump the list of sheet names to a new sheet in your workbook.
Go to any blank worksheet, and then run this macro. It will output all the worksheet names in the first column. You can then just print the list. | |||||
feedback
|
|
Assuming you using VBA and not .NET you could write a sub routine similar to this. The same objects and names are available in .NET.
| |||
|
feedback
|
|
You can do this using Perl with Spreadsheet::ParseExcel module installed.
| |||
feedback
|
|
You can make a OleDbConnection to your Excel workbook then call GetOleDbSchemaTable to get list of all tables which are nothing but list of excel sheets ExcelConnection.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" }); | |||
|
feedback
|
|
You can do this using Python with the xlrd module installed:
Note: the | |||
|
feedback
|