Response to "Can I get a list of names of all the tabs..."

  • Thread starter Bob Umlas, Excel MVP
  • Start date
B

Bob Umlas, Excel MVP

Couldn't reply, so posting as new!

Write a Function, in VBA like:
Function tabName(idx As Integer) As String
tabName = Sheets(idx).Name
End Function
(Alt/F11; then Insert/Module. then put in the above).
In the worksheet, enter
=TABNAME(ROW(A1))
and fill down for as many sheets as there are.
 

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

Top