hi,
I am working on a new sheet to list each customer in rows and a number of info in columns. i identify each customer by a 6 didgit numeric number in the first column.
Sub a()
Dim myRange As Range, myList As Variant
Set myRange = Range("a3:q100")
myList = myRange
myListRowCount = myRange.Rows.Count 'I want this to be done a bit cooler.
End Sub
please take a look at this code. if you F8 it down to the last line you will see in the locals, out from myList = Variant/variant(1 to 98, 1 to 17)
how can i get the # 98 out in a variable i can use. have tried myList.count but no dice. Please help
Nolloping
Bookmarks