April 2006
Beginner
1114 pages
98h 16m
English
range.NoteText([Text], [Start], [Length])
Sets or returns the text of the note for the first cell in the specified range.
|
Argument |
Settings |
|---|---|
|
|
The text of the note |
|
|
The position of the first character within the note to set or return |
|
|
The number or characters to set or return |
The following code adds a note if the specified cell is greater than the specified value:
With ActiveSheet.Range("B3")
If .Value >= 0.3 Then
.NoteText "All Star!"
End If
End WithRead now
Unlock full access