Ошибка времени выполнения «1004» - сбой метода «Диапазон» объекта «_Global» - PullRequest
0 голосов
/ 17 апреля 2020

в коде:

Sub sync()

          Dim Dindex As Long 'the index of the D value we are on currently.
          Dim Aindex As Long 'the index of the A value we are on currently
          Dim Gindex As Long 'the index of the A value we are on currently
          Dim Dvalue As Double 'the cell in D value we want to normalize by -time
          Dim Avalue As Double 'the A cell value - time
          Dim Bvalue As Double
          Dim Hvalue As Double
          Dim Gvalue As Double 'the G cell value - time

          Dindex = 3
          Aindex = 3
          Gindex = 3

          Dvalue = Cells(Dindex, 4).Value 'start value

          Avalue = Cells(Aindex, 1).Value 'start value

          Gvalue = Cells(Gindex, 7).Value

          Do While Dvalue <> 0
                    Do While Avalue < Dvalue
                              Aindex = Aindex + 1
                              Avalue = Range("A" & CStr(Aindex)).Value
                    Loop
                    Do While Gvalue < Dvalue
                              Gindex = Gindex + 1
                              Gvalue = Range("G" & CStr(Gindex)).Value
                    Loop
                    Bvalue = Cells(Aindex, 2)
                    If Avalue <> Dvalue Then
                              Aindex = Aindex - 1
                              Bvalue = (Bvalue + Range("A" & CStr(Aindex)).Value) / 2
                    End If
                    Hvalue = Cells(Gindex, 8).Value
                    If Gvalue <> Dvalue Then
                              Gindex = Gindex - 1
                              Hvalue = (Hvalue + Range("G" & CStr(Gindex)).Value) / 2
                    End If
                    Cells(Dindex, 10).Value = Dvalue
                    Cells(Dindex, 11).Value = Bvalue
                    Cells(Dindex, 12).Value = Hvalue
                    Dindex = Dindex + 1
                    Dvalue = Cells(Dindex, 4).Value
          Loop

End Sub

Я получил ошибку, когда в строке: Avalue = Range ("A" & CStr (Aindex)). Значение, когда значение Aindex достигло 1048577. Я подозреваю что проблема в том, что я пытаюсь добраться до такой большой ячейки, цель кода - поместить 3 разных значения систем времени в одну и ту же систему времени, поэтому мне нужно выйти за пределы этой ячейки.

1 Ответ

0 голосов
/ 18 апреля 2020

благодаря BigBen я обнаружил, что максимальное значение столбца Excel составляет 1048576, и успешно исправил мой код.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...