View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Bob Allen[_2_] Bob Allen[_2_] is offline
external usenet poster
 
Posts: 12
Default Run-time error '91'

Hi Jacob,

I have something NEW to ask. I can NO LONGER start a NEW thread on this
site - and MicroSoft Support tells me on the phone that they are no longer
supporting this site!

SO - do you know of an alternative?

Bob Allen

"Jacob Skaria" wrote:

Why dont you post the array declarations

?StartUpSheet
?array_5

If this post helps click Yes
---------------
Jacob Skaria


"Bob Allen" wrote:

Addendum to code cited below - 2 additional dim statements -
Dim a As Integer
Dim cell As Range

RowCounter = 0
CellCounter = 0
nextChkBox = 1
ActiveRow = 0

Worksheets("Start_Up_Pricing").Activate.......

Bob Allen

"Bob Allen" wrote:

I get a run-time error '91' with the line of code - StartUpSheet(RowCounter,
1) = cellVal - in the code below. I've used the Excel help - but can't
figure out what object variable I need to set. What don't I understand? I've
dimensioned the array and other variables in a global variable area at the
head of the application code.

Bob Allen

RowCounter = 0
CellCounter = 0
nextChkBox = 1
ActiveRow = 0

Worksheets("Start_Up_Pricing").Activate

For Each cell In Range("A3:B86")
CellCounter = CellCounter + 1
cellVal = cell.Value
MsgBox cellVal
If MsgBox("quit now", vbYesNo) = vbYes Then
GoTo bob1
End If
a = CellCounter Mod 2
If CellCounter = 1 Then a = 0

If a = 0 Then ColumnA = yes
If ColumnA = yes Then
RowCounter = RowCounter + 1
'ActiveRow = ActiveRow + 1
StartUpSheet(RowCounter, 1) = cellVal
StartUpSheet(RowCounter, 2) = cell.Offset(0, 1).Value
StartUpSheet(RowCounter, 3) = cell.Offset(0, 3).Value
StartUpSheet(RowCounter, 4) = cell.Offset(0, 4).Value
StartUpSheet(RowCounter, 5) = cell.Offset(0, 5).Value
End If
array_5 = StartUpSheet(RowCounter, 5)
MsgBox array_5
Next cell
GoTo bob1