tamrob23
Board Regular
- Joined
- Jun 20, 2006
- Messages
- 203
Good Afternoon,
I wrote a VBA in Excel (below) so I can retrieve comments but I quickly realized that people are using multiple cells in multiple columns to make comments. Is there anyway I can create something that will automatically find the comments and put them in an empty cell? If I continue to use what I created below, I'm going from 8 columns to 16 (because I'm creating a column to retrieve the comments). Please help!
Function Comment(incell) As String
On Error Resume Next
Comment = incell.Comment.Text
End Function
I wrote a VBA in Excel (below) so I can retrieve comments but I quickly realized that people are using multiple cells in multiple columns to make comments. Is there anyway I can create something that will automatically find the comments and put them in an empty cell? If I continue to use what I created below, I'm going from 8 columns to 16 (because I'm creating a column to retrieve the comments). Please help!
Function Comment(incell) As String
On Error Resume Next
Comment = incell.Comment.Text
End Function