我正在尝试使用 VBA 对 Excel 中的一个单元格块中的值进行自动求和。在调试以下代码时,我不断收到类型不匹配错误。我哪里做错了?
Sub autosumtest()
Dim total As Integer
Worksheets("Sheet1Test").Select
Range("F16:G20").Select
total = CInt("=SUM(Selection.Values)")
MsgBox (total)
End Sub
EDIT 1:
这是我的测试数据的简单示例,称为 Autosum Range: