ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   copy cells to a comment (https://www.excelbanter.com/excel-discussion-misc-queries/93248-copy-cells-comment.html)

Jakobshavn Isbrae

copy cells to a comment
 
How do I copy the contents of a set of cells into a comment ?

Thank you very much in advance
--
jake

Ardus Petus

copy cells to a comment
 
Do you want each cell of the set to have its own comment (cells contents)?

--
AP

"Jakobshavn Isbrae" a écrit
dans le message de news:
...
How do I copy the contents of a set of cells into a comment ?

Thank you very much in advance
--
jake




Jakobshavn Isbrae

copy cells to a comment
 
I have about 30 items in cells in a single column that I would like to copy
and paste in a single column in the comment.

I can select the cells in the worksheet and copy them, but in the comment my
CNTRLv gets ignored.

I can't determine what I am doing wrong.

Thank you for your help.
--
jake


"Ardus Petus" wrote:

Do you want each cell of the set to have its own comment (cells contents)?

--
AP

"Jakobshavn Isbrae" a écrit
dans le message de news:
...
How do I copy the contents of a set of cells into a comment ?

Thank you very much in advance
--
jake





Ardus Petus

copy cells to a comment
 
Select the 30 cells, then run this macro:

'--------------------------------------------
Sub InsertComment()
Dim rCell As Range
Dim sText As String

For Each rCell In Selection
sText = sText & rCell.Text & vbLf
Next rCell

On Error Resume Next
Set rCell = Range(InputBox("Cell to comment"))
On Error GoTo 0
If rCell Is Nothing Then
MsgBox "Invalid input"
Exit Sub
End If
rCell.ClearComments
rCell.AddComment sText
End Sub
'-------------------------------------------------

HTH
--
AP

"Jakobshavn Isbrae" a écrit
dans le message de news:
...
I have about 30 items in cells in a single column that I would like to copy
and paste in a single column in the comment.

I can select the cells in the worksheet and copy them, but in the comment
my
CNTRLv gets ignored.

I can't determine what I am doing wrong.

Thank you for your help.
--
jake


"Ardus Petus" wrote:

Do you want each cell of the set to have its own comment (cells
contents)?

--
AP

"Jakobshavn Isbrae" a écrit
dans le message de news:
...
How do I copy the contents of a set of cells into a comment ?

Thank you very much in advance
--
jake







Jakobshavn Isbrae

copy cells to a comment
 
Works perfectly !
I am amazed how fast you made this for me.
You have saved me hours of typing.
Thank you once more.
--
jake


"Ardus Petus" wrote:

Select the 30 cells, then run this macro:

'--------------------------------------------
Sub InsertComment()
Dim rCell As Range
Dim sText As String

For Each rCell In Selection
sText = sText & rCell.Text & vbLf
Next rCell

On Error Resume Next
Set rCell = Range(InputBox("Cell to comment"))
On Error GoTo 0
If rCell Is Nothing Then
MsgBox "Invalid input"
Exit Sub
End If
rCell.ClearComments
rCell.AddComment sText
End Sub
'-------------------------------------------------

HTH
--
AP

"Jakobshavn Isbrae" a écrit
dans le message de news:
...
I have about 30 items in cells in a single column that I would like to copy
and paste in a single column in the comment.

I can select the cells in the worksheet and copy them, but in the comment
my
CNTRLv gets ignored.

I can't determine what I am doing wrong.

Thank you for your help.
--
jake


"Ardus Petus" wrote:

Do you want each cell of the set to have its own comment (cells
contents)?

--
AP

"Jakobshavn Isbrae" a écrit
dans le message de news:
...
How do I copy the contents of a set of cells into a comment ?

Thank you very much in advance
--
jake








All times are GMT +1. The time now is 04:26 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com