+ Reply to Thread
Results 1 to 26 of 26

How to count an Array

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    How to count an Array

    i am using code to count an array.

    If I do it this way it works:

    Dim vColumnNames As Variant
    Dim iElement As Integer
    
    vColumnNames = Array("Invoice Num", "Date", "Ord Num", "Whse Num", "Whse", "Cust Num", _
             "Customer", "Ship to Num", "Ship to", "Sls Num", "SlsPrsn", "Discount", "Item Num", "Product", _
             "Cases", "Units", "Price$", "Del", "Amt", "Total Cost", "Unit Cost", "Profit", "Weight", "Week Num", _
             "Week", "UFN", "Date Filter", "Dept", "Division", "P Cat", "Species", "Country", "S State", "S City", _
             "Group", "Sls Class", "P Man", "2 Man", "Assigned", "Region", "P Status", "Label", "Equiv")
    
    For iElement = LBound(vColumnNames) To UBound(vColumnNames)
            fnCountArray = fnCountArray + 1
        Next iElement
    However if I count the array in a separate function and pass the array to it - it does not count it correctly. Here is the code:

    vColumnNames = Array("Invoice Num", "Date", "Ord Num", "Whse Num", "Whse", "Cust Num", _
             "Customer", "Ship to Num", "Ship to", "Sls Num", "SlsPrsn", "Discount", "Item Num", "Product", _
             "Cases", "Units", "Price$", "Del", "Amt", "Total Cost", "Unit Cost", "Profit", "Weight", "Week Num", _
             "Week", "UFN", "Date Filter", "Dept", "Division", "P Cat", "Species", "Country", "S State", "S City", _
             "Group", "Sls Class", "P Man", "2 Man", "Assigned", "Region", "P Status", "Label", "Equiv")
    
    fnCountArray vColumnNames
    
    
    Function fnCountArray(ParamArray vArray() As Variant)
    
        Dim iElement As Integer
    
        For iElement = LBound(vArray) To UBound(vArray)
            fnCountArray = fnCountArray + 1
        Next iElement
        
        MsgBox iElement
        
    End Function
    If I do it as a separate function then it only counts 1. Can someone help?

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    vColumnNames is a single array.

    Function fnCountArray(vArray As Variant) As Long
        If IsArray(vArray) Then
            fnCountArray = UBound(vArray) - LBound(vArray) + 1
        End If
    End Function
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    shg,

    Sorry your code did work. I did not notice that you changed the function declaration. I changed that now and it worked. Thank you and everyone for the help.

  4. #4
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    That still counts 1. How do I get it to count the elements within the function.

  5. #5
    Valued Forum Contributor
    Join Date
    05-07-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    354

    Re: How to count an Array

    change your function to
    Function fnCountArray(vArray As Variant)
    
        Dim iElement As Integer
    
        For iElement = LBound(vArray) To UBound(vArray)
            fnCountArray = fnCountArray + 1
        Next iElement
        
        MsgBox iElement
        
    End Function
    Last edited by vandan_tanna; 05-08-2012 at 02:07 PM. Reason: added code tags
    Regards,
    Vandan

  6. #6
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    Now I need to add to the end of the array. This is what I have tried:

    vColumnNames = Array(vColumnNames, "Assigned")
    and

    vColumnNames = vColumnNames & "Assigned"
    Neither one works.

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

        Dim avsCol As Variant
    
        avsCol = Array("Invoice Num", "Date", "Ord Num")
        MsgBox avsCol(UBound(avsCol))
        
        ReDim Preserve avsCol(UBound(avsCol) + 1)
        avsCol(UBound(avsCol)) = "Whse Num"
        MsgBox avsCol(UBound(avsCol))

  8. #8
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    shg,

    Thank you a lot - that works. I have one more request (which I tested but am missing something). How do I get that to work with a function. Here is what I tried:

    Function fnAddToArray(ByVal strToAdd As String, vArray As Variant) As Variant
        
        ReDim Preserve vArray(UBound(vArray) + 1)
        vArray(UBound(vArray)) = strToAdd
    
    End Function
    That doesn't work

  9. #9
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    Please respect the time of people that assist, and post all the information needed to duplicate a problem. This, for example, works fine:

    Sub x()
        Dim vArray As Variant
        
        vArray = Array("A", "B", "C")
        fnAddToArray "D", vArray
        MsgBox vArray(UBound(vArray))
    End Sub
    
    Function fnAddToArray(ByVal strToAdd As String, vArray As Variant) As Variant
        ReDim Preserve vArray(UBound(vArray) + 1)
        vArray(UBound(vArray)) = strToAdd
    End Function

  10. #10
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    shg,

    I do respect the time of people that assist - my needs change as I program. Originally I was not going to put it in a function but it added a lot more code (that I would not like to do). So instead I decided to use a separate function.

    Thank you for your help

  11. #11
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    That is not working perfectly.

    I need to do it multiple times. Here is all my code:

    vColumnNames = Array("Invoice Num", "Date", "Ord Num", "Whse Num", "Whse", "Cust Num", _
             "Customer", "Ship to Num", "Ship to", "Sls Num", "SlsPrsn", "Discount", "Item Num", "Product", _
             "Cases", "Units", "Price$", "Del", "Amt", "Total Cost", "Unit Cost", "Profit", "Weight", "Week Num", _
             "Week", "UFN", "Date Filter")
    
    fnAddToArray blnAssigned, "Assigned", vColumnNames
        fnAddToArray blnCStatus, "C Status", vColumnNames
        fnAddToArray blnCountry, "Country", vColumnNames
        fnAddToArray blnDept, "Dept", vColumnNames
        fnAddToArray blnDivison, "Divison", vColumnNames
        fnAddToArray blnEquiv, "Equiv", vColumnNames
        fnAddToArray blnGroup, "Group", vColumnNames
        fnAddToArray blnLabel, "Label", vColumnNames
        fnAddToArray blnPCat, "P Cat", vColumnNames
        fnAddToArray blnPMan, "P Man", vColumnNames
        fnAddToArray bln2Man, "2 Man", vColumnNames
        fnAddToArray blnPStatus, "P Status", vColumnNames
        fnAddToArray blnRegion, "Region", vColumnNames
        fnAddToArray blnSlsClass, "Sls Class", vColumnNames
        fnAddToArray blnSCity, "S City", vColumnNames
        fnAddToArray blnSState, "S State", vColumnNames
        fnAddToArray blnSpecies, "Species", vColumnNames
        
        Range("A1", Cells(1, fnCountArray(vColumnNames))).Value = vColumnNames
    Function fnAddToArray(ByVal blnAdd As Boolean, ByVal strToAdd As String, vArray As Variant) As Variant
        
        If blnAdd Then
            ReDim Preserve vArray(UBound(vArray) + 1)
            vArray(UBound(vArray)) = strToAdd
        End If
    
    End Function
    If I leave the + 1 in there then there will be a blank column between the original array and the first added column. If I remove the + 1, then there is no blank column but each time something adds to the array it writes over the last thing that was written. So if I added "Assigned" and "Region" - "Assigned" would be added then it would be written over by "Region"

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    Once again, this works fine:

    Sub x()
        Dim vColumnNames As Variant
    
        vColumnNames = Array("Invoice Num", "Date", "Ord Num", "Whse Num", "Whse", "Cust Num", _
                             "Customer", "Ship to Num", "Ship to", "Sls Num", "SlsPrsn", "Discount", "Item Num", "Product", _
                             "Cases", "Units", "Price$", "Del", "Amt", "Total Cost", "Unit Cost", "Profit", "Weight", "Week Num", _
                             "Week", "UFN", "Date Filter")
    
        fnAddToArray True, "Assigned", vColumnNames
        fnAddToArray True, "C Status", vColumnNames
        fnAddToArray True, "Country", vColumnNames
        fnAddToArray True, "Dept", vColumnNames
        fnAddToArray True, "Divison", vColumnNames
        fnAddToArray True, "Equiv", vColumnNames
        fnAddToArray True, "Group", vColumnNames
        fnAddToArray True, "Label", vColumnNames
        fnAddToArray True, "P Cat", vColumnNames
        fnAddToArray True, "P Man", vColumnNames
        fnAddToArray True, "2 Man", vColumnNames
        fnAddToArray True, "P Status", vColumnNames
        fnAddToArray True, "Region", vColumnNames
        fnAddToArray True, "Sls Class", vColumnNames
        fnAddToArray True, "S City", vColumnNames
        fnAddToArray True, "S State", vColumnNames
        fnAddToArray True, "Species", vColumnNames
    
        Range("A1").Resize(, UBound(vColumnNames) - LBound(vColumnNames) + 1).Value = vColumnNames
    End Sub
    
    Function fnAddToArray(ByVal blnAdd As Boolean, ByVal strToAdd As String, vArray As Variant) As Variant
        If blnAdd Then
            ReDim Preserve vArray(UBound(vArray) + 1)
            vArray(UBound(vArray)) = strToAdd
        End If
    End Function

  13. #13
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    snb,

    That is doing the same exact thing that my code did. It is adding a blank column between the original array and the first column I add.

  14. #14
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    I'm not snb.

    Did you try running the code as posted?

  15. #15
    Forum Contributor
    Join Date
    08-23-2010
    Location
    Staten Island, NY
    MS-Off Ver
    Excel 2003
    Posts
    242

    Re: How to count an Array

    Yes, the only line that you changed was this:

    Range("A1").Resize(, UBound(vColumnNames) - LBound(vColumnNames) + 1).Value = vColumnNames
    It does exactly the same as my code - it adds a blank column between the Original Array and the first item that I add.

    Sorry for messing up your name.

  16. #16
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    The code I posted doesn't result in any blank cells. I have no further suggestions, sorry.

  17. #17
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How to count an Array

    is all that code in the same module and do you have an option base 1 statement anywhere?
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  18. #18
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    It works with option base 1.

  19. #19
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How to count an Array

    even if the function code is in a different module without an option base 1? I haven't tried (on a cell)-I'm just trying to think of anything that might cause the claimed behavior.

  20. #20
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    Dunno, Joseph. There are disconnected fragments of code with no context, and I'm not up for 20 Questions today.

    Please feel free to sort it out.

  21. #21
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How to count an Array

    logically it would produce that effect. the redim preserve would change the lower bound to 0 on first pass while increasing the upper bound, everything shifts up and the last two slots are now empty and only the last one gets populated. hence blank column before first added item.

  22. #22
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    Yup, that could happen, or conversely, you could overwrite the last element. That was my point about posting code out of context.

  23. #23
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    Test1 leaves a gap, test2 overwrites an element, test3 works irrespective of option base.

    Option Explicit
    
    Option Base 1
    
    Sub test1()
        Dim av          As Variant
    
        av = Array(1, 2, 3)
    
        Extend1 4, av
        Rows(1).ClearContents
        Range("A1").Resize(, UBound(av) - LBound(av) + 1).Value = av
    End Sub
    
    Function Extend1(v As Variant, av As Variant) As Variant
        ReDim Preserve av(0 To UBound(av) + 1)
        av(UBound(av)) = v
    End Function
    
    Sub test2()
        Dim av          As Variant
    
        av = VBA.Array(1, 2, 3)
    
        Extend2 4, av
        Rows(1).ClearContents
        Range("A1").Resize(, UBound(av) - LBound(av) + 1).Value = av
    End Sub
    
    Function Extend2(v As Variant, av As Variant) As Variant
        ReDim Preserve av(1 To UBound(av) + 1)
        av(UBound(av)) = v
    End Function
    
    Sub test3()
        Dim av          As Variant
    
        av = Array(1, 2, 3)
    
        Extend3 4, av
        Rows(1).ClearContents
        Range("A1").Resize(, UBound(av) - LBound(av) + 1).Value = av
    End Sub
    
    Function Extend3(v As Variant, av As Variant) As Variant
        ReDim Preserve av(UBound(av) + 1)
        av(UBound(av)) = v
    End Function

  24. #24
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How to count an Array

    but if Extend3 were in a different module, with no option base statement, test3 would have the same problem as test1.

  25. #25
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to count an Array

    I didn't test, but the solution is to not use Option Base -- it's never necessary.

  26. #26
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How to count an Array

    or at the very least use it consistently.
    of course using VBA.Array instead of just Array would also cure it since it ignores the option base

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1