S
Shaun
Not sure how to use this UDF.....I need the information that is in other
cells to be put into a comment box.
Shaun
Try this UDF:
Function copycomment(r As Range)
Application.Volatile
Dim whereami As Range
Set whereami = Application.Caller
If whereami.Comment Is Nothing Then
Else
whereami.Comment.Delete
End If
whereami.AddComment Text:=r.Value
copycomment = ""
End Function
I need to link information found in other sheets of my workbook to comment
cells to be put into a comment box.
Shaun
Try this UDF:
Function copycomment(r As Range)
Application.Volatile
Dim whereami As Range
Set whereami = Application.Caller
If whereami.Comment Is Nothing Then
Else
whereami.Comment.Delete
End If
whereami.AddComment Text:=r.Value
copycomment = ""
End Function
I need to link information found in other sheets of my workbook to comment