WHY doeswork, but![]()
Dim arStudents() As Variant Worksheets("George").Select arStudents = Range("B2:B17")
does not???![]()
Dim arStudents() As Variant arStudents = Worksheets("George").Range("B2:B17")
THANK-YOU ALL for your continuing help!
WHY doeswork, but![]()
Dim arStudents() As Variant Worksheets("George").Select arStudents = Range("B2:B17")
does not???![]()
Dim arStudents() As Variant arStudents = Worksheets("George").Range("B2:B17")
THANK-YOU ALL for your continuing help!
Due to the level of indirection, you either need:
or:![]()
arStudents = Worksheets("George").Range("B2:B17").Value
You should always specify .Value or .Value2 anyway.![]()
Dim arStudents as Variant
Everyone who confuses correlation and causation ends up dead.
Thank-you!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks