这是我的第一个重要的 VBA 程序,虽然我以前在 BASIC 的各种方言中使用过数组,并且在过去的三四个晚上都在研究 Walkenbach 的“Excel VBA for Dummies”,但我感到很困惑。
我预计会发现数组的一个元素的值增加了 1,并且在 475 次运行中,代码仅按预期执行了 449 次。其他 26 次运行产生了一个元素,但增加了 2 个元素。更奇怪的是,在这个初始代码块访问的十二个元素中,只有四个表现出这种行为,其他的则按预期返回 1。
如果有帮助,我可以发布错误函数使用的两个表,但无论数据是什么,我都看不出这是如何发生的。
'UDF to roll a number of Dice of specified size and total them
Function Dice(NoOfDice, DiceSize)
Dice = 0
For i = 1 To NoOfDice
Dice = Dice + WorksheetFunction.RandBetween(1, DiceSize)
Next
End Function
'UDF to generate a skill from the MOS Table
Function MOSSkill(ArmOfService, TechLevel)
Roll = Dice(1, 6)
If TechLevel = 2 Then Roll = Roll + 1 'TL-11 or less = 1; TL-12+ = 2
MOSSkill = WorksheetFunction.VLookup((WorksheetFunction.VLookup(Roll, (Range(Cells(4, 2), Cells(10, 8))), ArmOfService, False)), (Range(Cells(9, 32), Cells(39, 33))), 2, False)
End Function
Sub MercOne()
Randomize
Dim Merc(86)
45 For i = 1 To 86
Merc(i) = 0
Next
TechLevel = Dice(1, 2)
Roll = Dice(2, 6)
If Merc(2) >= 6 Then Roll = Roll + 1
If Merc(3) >= 5 Then Roll = Roll + 2
If Roll < 5 Then GoTo 45
ArmOfService = Dice(1, 4)
If ArmOfService = 4 Then
ArmOfService = ArmOfService + 2
Else: ArmOfService = ArmOfService + 1
End If
'Array Check 1
For i = 7 To 37
Debug.Print Merc(i); ",";
Next
Debug.Print
Merc(MOSSkill(ArmOfService, TechLevel)) = Merc(MOSSkill(ArmOfService, TechLevel)) + 1
'Array Check 2
For i = 7 To 37
Debug.Print Merc(i); ",";
Next
Debug.Print
End Sub