The myRows() array got some value like: 1, 2, 3, 4, 5
In my First executed code all works and gives me the right array length.
'Sorry can't show you the data.. 
...At this time i would like to see what is left of it by Calling the updateRecords.
Why does it execute but don't gives me the array length there?
Are there better ways to see the Array length?
Dim myRows()
Public Sub updateRecords()
Dim max_user_items As Long
max_user_items = Application.CountA(myRows)
tb_textbox1 = max_user_items & " items"
End Sub
Private Sub myBTTN_Click()
Call updateRecords
End Sub
Bookmarks