That does work, but I need it a bit more complex than that. For instance:
- Look at a6:a345 to find any cells containing the word RAC
- When the cell contents change to RAC insert a note in the comments stating
"(Current Date) Advised RAC Process of MN decision"
Then a Second Macro
- Look ab6:ab345 for any cells containing the word Upheld
- When the cell contents change to FI insert a note in the comments stating
"(Current date) Advised RAC Process of FI upheld decision"
Etc.
But I need the comment section to keep all the previous notes and enter the
most recent note on top rather than at the bottom.
Is all of this possible??
"Don Guillett" wrote:
Try this idea.
Sub AddMOREtocomment()
With Range("P4")
.Comment.Text Text:=.Comment.Text & Chr(10) & "more"
End With
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"akemeny" wrote in message
...
Hi
I'm looking for a macro that will automatically enter the current date and
a
note in the comments box when certain information is entered into specific
cells on my spreadsheets without deleting any old comments.
For example:
When V = unfavorable, automatic comment should enter:
- The current date (Blue and Bold)
- The note (standard font and color)
When V = favorable, automatic comment should enter:
- The current date (Blue and Bold
- The note (standard font and color)
Etc.
Is this possible??