Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
An example, putting the comment text in column J:
Sub ExtractComments() Dim Cell As Range On Error GoTo EndThis For Each Cell In Range("A1:A10").SpecialCells(xlCellTypeComments) Cell.Offset(0, 9).Value = Cell.Comment.Text Next Exit Sub EndThis: MsgBox "No comments" End Sub I'm not sure what you're going to do if more than one column has comments. -- Jim Rech Excel MVP |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Exporting Excel Tables | Excel Discussion (Misc queries) | |||
exporting data from access to excel | Excel Discussion (Misc queries) | |||
Exporting an Excel Chart into Access | Charts and Charting in Excel | |||
importing/exporting from access to excel | Excel Discussion (Misc queries) | |||
Exporting Excel to Access | Excel Programming |