Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it possible to create a drop down list that shows the sheets in a workbook?
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
First create a list in a helper column (e.g. N) with this macro, then use the
N1:N? range as source of validation list! Sub shlist() Dim ws As Worksheet For Each ws In ActiveWorkbook.Worksheets Range("N" & ws.Index).Value = ws.Name 'change N as you like Next ws End Sub Regards, Stefi €žDJB€ť ezt Ă*rta: Is it possible to create a drop down list that shows the sheets in a workbook? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Or, if you're lazy like me you can right-click on one of the "VCR"
buttons in the bottom left corner (you know, the four browsing buttons used to navigate the sheets) if your list isn't too long. On May 22, 9:56 am, Stefi wrote: First create a list in a helper column (e.g. N) with this macro, then use the N1:N? range as source of validation list! Sub shlist() Dim ws As Worksheet For Each ws In ActiveWorkbook.Worksheets Range("N" & ws.Index).Value = ws.Name 'change N as you like Next ws End Sub Regards, Stefi „DJB” ezt írta: Is it possible to create a drop down list that shows the sheets in a workbook? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I ??? - two drop down lists | Excel Worksheet Functions | |||
Drop down lists that auto create and then filter the next drop down list | Excel Worksheet Functions | |||
how do I use one drop-list to modify another drop-lists options? | Excel Discussion (Misc queries) | |||
Multiple lists with repeated values for dependet drop down lists | Excel Worksheet Functions | |||
Drop Down lists | Excel Discussion (Misc queries) |