Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将一个总和添加到一个活动单元格中,但它仍然无法正常工作。
我的代码:
rngCell2.Offset(0, 6).Activate ActiveCell = ActiveCell + 15
当单元格为空时,执行后单元格将得到值 15。但是当已经有一个数字 fe 60 时,它保持 60。
我的代码有什么问题,正确的代码是什么?
提前致谢
尝试
rngCell2.Offset(0, 6).Value = rngCell2.Offset(0, 6).Value + 15
这会将左侧 6 列的单元格增加rngCell215。
rngCell2
如果只需要增加ActiveCell,试试
ActiveCell.Value = ActiveCell.Value + 15