How to convert comments to cell contents in Excel?
Supposing I have a range cells filled with comments in a worksheet, and now, I want to convert all of the comments to cell contents so that I can print them neatly and roundly. Are there any good ways to solve this task?
Convert comments to cell contents with User Defined function
Convert comments to cell contents with VBA code
Convert comments to cell contents with Kutools for Excel
Convert comments to cell contents with User Defined function
By using this method, you need to create a defined function first, and then apply the defined formula to convert the comments to cell contents. You can finish it as the following steps:
1.Click Developer > Visual Basic, a new Microsoft Visual Basic for applications window will be displayed, click Insert > Module, and input the following function into the Module:
Function GetComments(pRng As Range) As String
'Updateby20140509
If Not pRng.Comment Is Nothing Then
GetComments = pRng.Comment.Text
End If
End Function
2.Press Ctrl + S to save the function.
3.Then input the following formula “=GetComments(A1 )” in any blank cell, in this case, I will use cell E1. See screenshot:
4. Press the Enter key. And select cell E1, then drag the fill handle over the range of cells that you want to contain this formula. And all of the comments are converted to cell contents. See screenshot:
Convert comments to cell contents with VBA code
If you know the VBA code, the following brief code also can help you to convert comments to cell contents.
1. Select the range that you want to convert to cell contents;
2. Click Developer > Visual Basic, a new Microsoft Visual Basic for applications window will be displayed, click Insert > Module, and input the following code into the Module:
Sub CommentToCell()
Dim Rng As Range
Dim WorkRng As Range
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
For Each Rng In WorkRng
Rng.Value = Rng.NoteText
Next
End Sub
3. Then click button to run the code. And select a range you want to convert then click OK, and all of the selected comments have been converted to cell contents in its relevant cells.
![]() | ![]() | ![]() |
Note: If you don’t want the comments, you can delete them.
Convert comments to cell contents with Kutools for Excel
Kutools for Excel : with more than 300 handy Excel add-ins, free to try with no limitation in 30 days.Get it Now .
The Convert Comment and Cell of Kutools for Excel is a handy and useful tool can help you to solve many problems about comments.
After installing Kutools for Excel, please do as follows:
1. Select the range that you want to import the comments into the cells.
2. Click Kutools > More > Convert Comment and Cell.
3. In the Convert Comment and Cell dialog box, select Convert comments into content of cells. See screenshot:
4. Then click OK. Now all of the selected comments are converted to cell contents in its original range.
For more detailed information about Convert Comment and Cell, please visit Convert Comment and Cell feature description.
Related articles:
- Change all comment formats in cells
- Change all comments' author name
- List all comments to a new worksheet or workbook
- Find and replace text within comments
- Show or hide all comments and comment indicators in Excel
- Convert cell contents to comments in Excel
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!