Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Move Comment into cell as Text

How do I move comments into cells as text?
or use vlookup to pull comment to another sheet?
--
Just Computing
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Move Comment into cell as Text

Select some cells and run this macro:

Sub CommentMover()
Dim r As Range
For Each r In Selection
On Error Resume Next
Set C = r.Comment
If Err.Number = 0 Then
r.Offset(0, 1).Value = r.Comment.Text
End If
On Error GoTo 0
Next
End Sub

If one of the selected cells contains a comment, the text will be copied
into the cell immediately to the right.
--
Gary''s Student - gsnu200812


"Frances" wrote:

How do I move comments into cells as text?
or use vlookup to pull comment to another sheet?
--
Just Computing

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Move Comment into cell as Text

Worked Wonderfully.
--
Just Computing


"Gary''s Student" wrote:

Select some cells and run this macro:

Sub CommentMover()
Dim r As Range
For Each r In Selection
On Error Resume Next
Set C = r.Comment
If Err.Number = 0 Then
r.Offset(0, 1).Value = r.Comment.Text
End If
On Error GoTo 0
Next
End Sub

If one of the selected cells contains a comment, the text will be copied
into the cell immediately to the right.
--
Gary''s Student - gsnu200812


"Frances" wrote:

How do I move comments into cells as text?
or use vlookup to pull comment to another sheet?
--
Just Computing

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Move comment into cell as text PhooPhan Excel Discussion (Misc queries) 4 September 2nd 08 10:17 AM
Create Cell Comment based on text in a cell on another worksheet Dave Fellman Excel Discussion (Misc queries) 2 March 15th 07 09:49 AM
How do I move comment indicator to different corner of cell? TVK Excel Worksheet Functions 1 February 8th 07 11:36 PM
How can I move the comment box to the left of the cell? Frederic Excel Worksheet Functions 0 May 25th 05 02:25 PM
How can I translate a comment to text in a cell? DFIChris Excel Discussion (Misc queries) 2 May 16th 05 08:19 PM


All times are GMT +1. The time now is 02:27 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"