Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Friday, November 18, 2016 at 12:15:13 AM UTC-8, Claus Busch wrote:
Hi Howard, Am Fri, 18 Nov 2016 08:09:30 +0100 schrieb Claus Busch: your drop down in Sheet1 cell A1. Then try: sorry, I didn't read carefully. Try: Sub Test() Dim varSh As Variant Dim LRow As Long, i As Long Dim myRng As Range Dim myStr As String varSh = Split(Sheets("Sheet1").Range("A1").Validation.Form ula1, ";") For i = LBound(varSh) To UBound(varSh) With Sheets(varSh(i)) LRow = .Cells(Rows.Count, "D").End(xlUp).Row Set myRng = .Range("D5:D" & LRow) 'Do stuff End With Next End Sub Check out what separator you have in the validation list. In german system it is a semicolon. Perhaps it is a comma in your system. Regards Claus B. Hi Claus. Actually, the first one is correct for what I want to do. I like the second for a good example of "for all sheets in drop down". Thank you very much. Howard |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
names and drop down lists | Excel Worksheet Functions | |||
Cell names = sheet names | Excel Worksheet Functions | |||
Drop Down with Range names | Excel Worksheet Functions | |||
Using Sheet names & Workbook names in VBA coding | Excel Programming | |||
return all worksheet tab names and chart sheet tab names in report - an example | Excel Programming |