Copy contents of comments to new cell
Closed
                                    
                        smd                    
                                    -
                            24 May 2009 à 03:33
                        
mubashir aziz Posts 190 Registration date Sunday 12 April 2009 Status Member Last seen 16 February 2010 - 25 May 2009 à 00:38
        mubashir aziz Posts 190 Registration date Sunday 12 April 2009 Status Member Last seen 16 February 2010 - 25 May 2009 à 00:38
        Related:         
- Copy contents of comments to new cell
 - How to hide steam comments - Guide
 - Get instagram comments with blue badge - Guide
 - Google docs download pdf with comments - Guide
 - Cell phone codes - Guide
 - How to disable youtube comments - Guide
 
1 response
                
        
                    mubashir aziz
    
        
                    Posts
            
                
            190
                
                            Registration date
            Sunday 12 April 2009
                            Status
            Member
                            Last seen
            16 February 2010
            
            
                    166
    
    
                    
25 May 2009 à 00:38
    25 May 2009 à 00:38
                        
                            
                    Can you tell me exactly the range of your cells and then in which column / rows you want to copy the data ???? 
Anyway i've a small macro which copies the comments data in same cells .... you can make copy of your working sheet and then after clearing the data from cells you can run this macro .....
                
                
            Anyway i've a small macro which copies the comments data in same cells .... you can make copy of your working sheet and then after clearing the data from cells you can run this macro .....
Sub commentstextintocell()
' This will copy text from comments into Cells
' But its necessary to select all the cells which comments you want in cells
'
Dim cell As Range
On Error Resume Next
For Each cell In Intersect(Selection, ActiveSheet.UsedRange)
        
        If Trim(cell.Comment.Text) <> "" Then
        cell.Value = cell.Comment.Text
                     
         End If
Next cell
End Sub