Excel:更改单元格时运行宏

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Excel:更改单元格时运行宏相关的知识,希望对你有一定的参考价值。

The easy way to set this up is to go to the macro window by pressing alt+F11.
Select the sheet from left panel. there will be two drop down. from the left drop down select worksheet and from right drop down list select the event 'change'.
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2. If Target.Address = "$D$8" Or Target.Address = "$D$7" Or Target.Address = "$D$9" Then
  3. Call Module1.AutoGoalSeek
  4. End If
  5. End Sub

以上是关于Excel:更改单元格时运行宏的主要内容,如果未能解决你的问题,请参考以下文章

在单元格更改时自动执行 Excel 宏

运行宏excel后清除“撤消”历史按钮

EXCEL在改动某几个单元格时隐藏空列

如何强制excel单元格以指数方式改变颜色?

EXCEL的每个单元格实现一次输入后就无法再更改

如何在使用 tableViews 自调整单元格时在运行时更改表格视图单元格高度?