Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have data in excel in muliple rows and columns, I want to copy this data
and paste it into a comment. Any suggestions? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select the cells (any rows or columns) and run this macro:
Sub commentset() Dim r As Range Dim s As String s = "" For Each r In Selection s = s & r.Value Next With Range("K9") .AddComment .Comment.Visible = False .Comment.Text Text:=s End With End Sub I picked K9 as the destination to hold the comment, you can pick anything you want. -- Gary's Student "Bonnie" wrote: I have data in excel in muliple rows and columns, I want to copy this data and paste it into a comment. Any suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to convert a month to a quarter ...... | New Users to Excel | |||
How paste text from note pad to excel w/o using (Text to column) f | Excel Worksheet Functions | |||
How do I copy and paste an Illustratorsketch with text into Excel | Excel Discussion (Misc queries) | |||
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER | New Users to Excel | |||
excel paste special should allow text | Excel Worksheet Functions |