Jamie said:
I have a large workbook with the tab titles
available to copy to save typing every single
one, is it possible to populate the tabs by a
form of copy-paste
Well, copy-and-paste __does__ work. Select a cell, press ctrl+C, select a
tab, right-click and select Rename, then press ctrl+V.
If you want to copy only part of a cell, select the cell, select part of the
text in the Function Bar, and press ctrl+C.
If you would like to do this with a macro, use Record a New Macro to see
what Rename tab does. The following paradigm might be a starting point; it
assumes you select a cell with the new tab name:
Sub doit()
ActiveSheet.Name = Selection
End Sub