Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I copy the contents of a set of cells into a comment ?
Thank you very much in advance -- jake |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro, Copy Selected Cells Down a Column | Excel Discussion (Misc queries) | |||
Copy Selected cells down a row with macro | Excel Discussion (Misc queries) | |||
copy a block of cells | Excel Discussion (Misc queries) | |||
How to use macros to copy a range of cells which can exclude some cells which I didn't want to be copied? | Excel Worksheet Functions | |||
copy & paste spreadsheet cells from excel to outlook to excel | Excel Discussion (Misc queries) |