我試圖執行下一個代碼和得到的錯誤 -不能分配到陣列-vba
不能分配到陣列
哪裏錯誤?需要注意的是,如果我鍵入Dim arrf() As Variant
代替Dim arrf(5) As Variant
我得到的錯誤 -
類型不匹配
Public Function calc(ByVal value As Integer, ByVal num As Integer) As Variant()
Dim arr(5) As Variant
Dim x As Double
If value >= num Then
x = value - Application.RoundDown(value/num, 0) * num
arr(0) = x
arr(1) = num - arr(0)
arr(2) = Application.RoundUp(value/num, 0)
arr(3) = 1
arr(4) = Application.RoundDown(value/num, 0)
arr(5) = 1
Else
x = num - Application.RoundDown(num/value, 0) * value
arr(0) = x
arr(1) = value - arr(0)
arr(2) = Application.RoundUp(num/value, 0)
arr(3) = 1
arr(4) = Application.RoundDown(num/value, 0)
arr(5) = 1
calc = arr
End If
End Function
Sub cellsfunc()
With Application
.DisplayAlerts = False
.EnableEvents = False
.ScreenUpdating = False
End With
Dim lastrow As Integer
Dim counter As Integer
Dim arrf(5) As Variant
lastrow = Cells(Rows.Count, 2).End(xlUp).Row
For counter = 2 To lastrow Step 2
arrf = calc(Cells(4, counter), Cells(4, counter + 1))
Next counter
With Application
.DisplayAlerts = True
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
提前
感謝所有幫助者
你需要添加其中'num'等於0的條件,否則就會在該行得到一個錯誤'X =值 - Application.RoundDown(價值/ NUM,0)* num'因爲你試圖devide爲零 –
看到錯誤所在,選擇磨合類模塊的常規選項http://www.cpearson.com/excel/BreakInClassModule.aspx – Slai