View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
N10 N10 is offline
external usenet poster
 
Posts: 141
Default Combine Comments


"Beep Beep" wrote in message
...
I need to be able to combine (add) comments from numerous worksheets in a
summary worksheet. Cannot use SUM with comments (text) Any suggestions.

Thanks
Frank


Hi Frank

Convert the comment.text to a string
as in "AAA = cell.Comment.Text"

Then concatate the string into a second string variable

such as

"BBB = BBB & " " & AAA

Hope this helps

N10