Excel cell values into comments
I want Excel to automatically create comments to a range of cells. The comments should contain the values of another range of cells. Here is what I got so far: Private Sub Worksheet_Change(ByVal Target As Range) Dim sResult As String If Union(Target, Range("A18")).Address = Target.Address Then Application.EnableEvents = False Application.ScreenUpdating = False sResult = "Maximal " & Target.Value With Range("I6") .ClearComments .AddComment .Comment.Text Text:=sResult End With Application.EnableEvents = True Application.ScreenUpdating = True End If End Sub This works great for one cell; my