Copy contents of comments to new cell
Closed
                                    
                        smd                    
                                    -
                            May 24, 2009 at 03:33 AM
                        
mubashir aziz Posts 190 Registration date Sunday April 12, 2009 Status Member Last seen February 16, 2010 - May 25, 2009 at 12:38 AM
        mubashir aziz Posts 190 Registration date Sunday April 12, 2009 Status Member Last seen February 16, 2010 - May 25, 2009 at 12:38 AM
        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
 - Call of duty: black ops – zombies downloadable content - Download - Shooters
 - Cell phone codes - Guide
 
1 response
                
        
                    mubashir aziz
    
        
                    Posts
            
                
            190
                
                            Registration date
            Sunday April 12, 2009
                            Status
            Member
                            Last seen
            February 16, 2010
            
            
                    166
    
    
                    
May 25, 2009 at 12:38 AM
    May 25, 2009 at 12:38 AM
                        
                            
                    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