List all Worksheet Names Using Formula
Hi All,
Here is a method to list all sheet names in cells using formula.
Hit Ctrl + F3, New | Name : SheetNames
Refers to: =REPLACE(GET.WORKBOOK(1),1,FIND("]",GET.WORKBOOK(1)),"")
In A2 and copied down (Prior to XL 2007),
=IF(ROWS($A$2:A2)<=COUNTA(SheetNames),INDEX(SheetN ames,ROWS($A$2:A2)),"")
XL 2007 and later:
=IFERROR(INDEX(SheetNames,ROWS($A$2:A2)),"")
Enjoy !!
how to list all the sheets in workbook
hello,
So i have a workbook with 35 sheets
im trying to make a formula which will make a list of all sheets in that workbook, in a new tab.
i would need a step-by-step explanation on how will that work, as im new in this. Thank you