我希望标题澄清目标。我的所有尝试都失败了,例如:
Private Sub Worksheet_Change(ByVal Target As Range)
With Range("A1:A10") = "blah"
Range("A1:A10").Offset(0, 1).AddComment "fee"
Range("A1:A10").Offset(0, 2).AddComment "fi"
Range("A1:A10").Offset(0, 3).AddComment "fo"
End With
End Sub
我也试过这种方法:
Private Sub Worksheet_Change(ByVal Target As Range)
For Each cell In Range("A1:A10")
If cell.Value = "blah" Then
cell.Value.Offset(0, 1).AddComment "fee"
cell.Value.Offset(0, 2).AddComment "fi"
cell.Value.Offset(0, 3).AddComment "fo"
End If
Next
End Sub
而且:
Private Sub Worksheet_Change(ByVal Target As Range)
With Range(Target.Offset(0, 1).Address).AddComment
Range(Target).Offset(0, 1).Comment.Visible = False
Range(Target).Offset(0, 1).Comment.Text Text:="fee"
End With
End Sub
请注意,该代码旨在成为插入特定工作表中的事件处理程序。我明显误解了范围方面的VBA语法。任何这些潜艇工作的任何帮助都将非常受欢迎。
跟进:蒂姆建议使用Worksheet_Calculate就像魅力一样。我能够通过蒂姆代码的最终变化来实现我的目标:
Private Sub Worksheet_Calculate()
Dim rng As Range, cell As Range
'see if any changes are in the monitored range...
Set rng = Range("A1:A10")
If Not rng Is Nothing Then
For Each cell In rng.Cells
If cell.Value = "blah" Then
cell.Offset(0, 1).AddComment "fee"
cell.Offset(0, 2).AddComment "fi"
cell.Offset(0, 3).AddComment "fo"
End If
Next
End If
End Sub
答案 0 :(得分:7)
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rng As Range, cell as Range
On Error Goto haveError
'see if any changes are in the monitored range...
Set rng = Application.Intersect(Target, Me.Range("A1:A10"))
If Not rng is Nothing Then
'Next line prevents code updates from re-triggering this...
' (Not really needed if you're only adding comments)
Application.EnableEvents=False
For Each cell In rng.Cells
If cell.Value = "blah" Then
cell.Offset(0, 1).AddComment "fee"
cell.Offset(0, 2).AddComment "fi"
cell.Offset(0, 3).AddComment "fo"
End If
Next
Application.EnableEvents=True
End If
Exit Sub
haveError:
msgbox Err.Description
Application.EnableEvents=True
End Sub