繁体   English   中英

运行时错误“1004”-object“_Global”的方法“范围”失败

[英]Run-time error '1004' - Method 'Range' of object '_Global' failed

在代码中:

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)).Value 当 Aindex 值达到 1048577 时。我怀疑问题出在我试图到达如此大的单元格时,代码的目标是将 3 个不同的时间系统值放在同一个时间系统上,所以我需要超越那个单元格。

感谢 BigBen,我发现 excel 列的最大值为 1048576,并成功修复了我的代码。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM