Excel 2003宏未看到命名单元格


4

我正在尝试清理我直接引用单元格的excel宏(“LoopCount = Range(”E4“)。值”)而不是使用命名单元格(“LoopCount = Cell_LoopCount”)。

  • 所以我将单元格E4命名为“Cell_LoopCount”。每当我选择单元格E4时,它的标签就在左上角。
  • 在宏的开头,我添加了“表格(”数据“)。选择”以确保我在正确的工作表上操作,
  • 但是在“LoopCount = Cell_LoopCount”之后断开,显示Cell_LoopCount为空且LoopCount = 0
  • “LoopCount =范围(”E4“)。值”仍然可以正常工作

我错过了什么明显的事情?

Answers:


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.