Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi -
I don't understand why in the vACNay_Init sub, when I do NOT initialize the vACNay array via the ReDim in the calling macro, the Lbound and Ubound test 'fails' and the lines below the bound tests execute. When I step thru the code, I see the <subscript out of range msg when I 'cursor' the xbound phrases. When I execute the ReDim in sub test, called macro works as anticipated. Thanks. Neal Z. sub test() dim vACNay() as variant, Col as integer, AyRow as integer dim Status as string 'Note spaxxxcol series of vars are public constants as 'is gPaQty. 'ReDim vACNay(1, spacolqty) AyRow = 1 Call vACNay_Init(AyRow, 6, vACNay, Status) 'test show shows nothing when above ReDim is commented out, 'even tho' called lines seem to execute. For Col = 1 To spacolqty Debug.Print Col & ") -" & vACNay(AyRow, Col) & "-" Next Col End Sub Sub vACNay_Init(ByVal AyRow As Integer, ByVal PaNum As Integer, _ vACNay() As Variant, Status As String) Dim AyCol As Integer Status = "" If PaNum < 1 Or PaNum gPaQty Then Status = "PaNum = " & PaNum & " is invalid." Exit Sub End If On Error Resume Next If LBound(vACNay, 1) <= AyRow And AyRow <= UBound(vACNay, 1) _ And LBound(vACNay, 1) 0 Then vACNay(AyRow, SPaPaNumCol) = PaNum vACNay(AyRow, SPaPaAbbrCol) = PaAbr3_vPaNum(PaNum) 'Abr3 function vACNay(AyRow, SPaDlvCdCol) = "" 'DlvCd vACNay(AyRow, SPaACNCol) = "No Acct" 'ACN For AyCol = SPaSubscrCol To SPaDrawCol vACNay(AyRow, AyCol) = 0 Next AyCol For AyCol = SPaDrawCol + 1 To SPaColQty vACNay(AyRow, AyCol) = "" Next AyCol Else Err = 0 Status = "AyRow " & AyRow & " does not exist." End If End Sub -- Neal Z |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Array problem: Key words-Variant Array, single-element, type mismatch error | Excel Programming | |||
Array problem: Key words-Variant Array, single-element, type mismatch error | Excel Programming | |||
ReDim Object array as parameter of Variant array | Excel Programming | |||
Variant Array | Excel Programming | |||
variant array containing cel adresses convert to actual ranges-array | Excel Programming |