Search TeachExcel.com
TeachExcel.com
TE
Teach Excel MS Office Tutorials Excel Consulting Services Excel Forum
Excel Video Tutorials Excel Tips Free Excel Macros Excel Help Resources Contact TeachExcel
Video Tutorials
  • Free Macros
  • Excel Help Directory
  • Excel 2007 Resources
  • Keyboard Shortcuts
  • Excel Forum
  • Contact/About

Macros
Excel Tutorials For Macros

Delete All Comments in a Worksheet in Excel Macro


Bookmark and Share

Excel macro that will delete all of the comment contained within the active or current worksheet in Excel. This macro deletes only the in-cell comments in Excel.

This is a great way to quickly and effectively clean up your Excel worksheets. This saves you the hassle of deleting comments by hand and is very useful for people who make a lot of notes when developing a spreadsheet in Excel but don't want the end users to view the comments in Excel.
Where to install the macro:  Module

Excel Macro to Delete All Comments in a Worksheet

Sub Remove_All_Comments_From_Worksheet()

Cells.ClearComments

End Sub


Bookmark and Share


How to Install the Macro
  1. Select and copy the text from within the grey box above.

  2. Open the Microsoft Excel file in which you would like the Macro to function.

  3. Press "Alt + F11" - This will open the Visual Basic Editor - Works for all Excel Versions.  Or For other ways to get there, Click Here.

      For Excel Versions Prior to Excel 2007
      Go to Tools > Macros > Visual Basic Editor

      For Excel 2007
      Go to Office Button > Excel Options > Popular > Click Show Developer tab in the Ribbon. Then go to the Developer tab on the ribbon menu and on the far left Click Visual Basic

  4. On the new window that opens up, go to the left side where the vertical pane is located. Locate your Excel file; it will be called VBAProject (YOUR FILE'S NAME HERE) and click this.

  5. If the Macro goes in a Module, Click Here, otherwise continue to Step 8.

    1. Go to the menu at the top of the window and click Insert > Module
    2. Another window should have opened within the Visual Basic Editor's window. Within this new window, paste the macro code. Make sure to paste the code underneath the last line of anything else that is in the window.
    3. Go to Step 8.

  6. If the Macro goes in the Workbook or ThisWorkbook, Click Here, otherwise continue to Step 8.

    1. Directly underneath your excel file called VBAProject(your file's name here), click the Microsoft Excel Objects folder icon to open that drop-down list.
    2. Then, at the bottom of the list that appears, double-click the ThisWorkbook text.
    3. A new window inside the Visual Basic Editor's window will appear. In this new window, paste the code for the macro. Make sure to paste this code underneath the last line of any other code which is already in the window.
    4. Go to Step 8.

  7. If the Macro goes in the Worksheet Code, Click Here, otherwise continue to Step 8.

    1. Directly underneath your excel file called VBAProject(your file's name here), click the Microsoft Excel Objects folder icon to open that drop-down list.
    2. Within the list that appears you will see every worksheet that is in that excel file. They will be listed as such: Sheet1(NAME OF SHEET HERE) and under that will be Sheet2(NAME OF SHEET HERE). Select the sheet in which you want the macro to run and double-click that sheet.
    3. A new window inside the Visual Basic Editor's window will appear. In this new window, paste the code for the macro. Make sure to paste this code underneath the last line of any other code which is already in the window.
    4. Repeat steps b and c for every sheet you want the macro to work in. Putting the macro in one sheet will not enable it for any other sheets in the workbook.
    5. Go to Step 8.

  8. Close the Microsoft Visual Basic Editor window and save the Excel file. When you close the Visual Basic Editor window, the regular Excel window will not close.

  9. You are now ready to run the macro.



Similar Helpful Excel Resources

Comments Will Not Delete From Worksheet - Excel

View Content
Hi

First post - be gentle!

I am unable to delete Comments from one of my worksheets. When I try the machine just hangs (eggtimer) forever and the only way out is to Ctrl/Alt/Del. It only happens on this one worksheet - Comments on other Excel files delete OK.

I have not knowingly "protected comments" on this one or anything similar. Any ideas as to what has happened?

Thanks
Grockle

Macro To Delete Comments And Unhighlight Cells - Excel

View Content
I am having trouble writing a macro to do the following. Someone had created a spreadsheet a while back that highlighted the cell green and inserted a comment with the person's name and date/time if they changed anything in that cell. The macro works great, but I need a macro to undo the changes.

I would like a macro that will remove all comments from the sheet and revert the cells back to their original color. Since the cells encompass many colors, at the very least, I would like the macro to remove the comments and make the cells the default shading (white).

Any help would be greatly appreciated.

Thanks.

Macro To Delete Comments And Unhighlight Cells - Excel

View Content
I am having trouble writing a macro to do the following. Someone had created a spreadsheet a while back that highlighted the cell green and inserted a comment with the person's name and date/time if they changed anything in that cell. The macro works great, but I need a macro to undo the changes.

I would like a macro that will remove all comments from the sheet and revert the cells back to their original color. Since the cells encompass many colors, at the very least, I would like the macro to remove the comments and make the cells the default shading (white).

Any help would be greatly appreciated.

Thanks.

Copy Cell Comments From One Worksheet Into New Worksheet As Comments - Excel

View Content

Macro To Turnoff Worksheet Protection, And Add Comments - Excel

View Content
Hello all.

A bit of a complicated one, sorry, I'll try and make it as clear as possible.

I'm still a novice on macros, and am limited to using the recording tool and then editing what I get, but I can't successfully record exactly what I want to do on this one.
A friend pointed me at something on Ozgrid which is a bit like what I want, but not exactly.
http://www.ozgrid.com/forum/showthread.php?t=60978
I could go and ask there, but as I've never used that board myself, I feel more comfortable asking for help here

In my worksheet, each column (from D onwards) represents an individual week, with the week number in D20.

I use worksheet protection with a password, because alot of different people will use the same sheet. Users are not allowed to do anything on the worksheet, except tick or untick a number of boxes, which all works fine.

I want a macro that I will attach to a button, that will, in summary
1) turn off the worksheet protection
2) open an input box, to allow the user to enter text which will be stored as a comment for cell D20
3) if there is already text in the comment, show that text in the input box, so that the user can edit or delete it
4) I have modified the comment box format (so that it's blue instead of yellow etc) and any changes to the comment should leave the format unchanged.
5) If the user deletes the comment text, they should be left with a blank comment box
6) At the end of the process, worksheet protection should be turned back on using the original password, including if the user tries to do anything else while editing the comment, such as pressing ESC etc.

In detail . . .
1) Turn off worksheet protection, using the password.
Please note, this is NOT a request for help in cracking the password - I know what the password is (for the record, it's "password"), I just want to force the macro to use the password itself (rather than prompting the user to type it in) when removing and applying worksheet protection.
2) Open an input box. If the number of characters can be limited to something like 200, that would be ideal, but if not, that's OK. Have the text that is in the input box stored as the cell comment for D20.
3) if there is already text in the comment, show that text in the input box, so that the user can edit or delete it
4) I have modified the comment box format (so that it's blue instead of yellow etc) and any changes to the comment should leave the format unchanged.
5) If the user deletes the comment text, they should be left with a blank comment box. In other words, there should always be a comment attached to the cell, even if there is no text in the comment. I plan to set the worksheet up initially with blank comments in all the relevant cells.
6) At the end of the process, worksheet protection should be turned back on using the original password, including if the user tries to do anything else while editing the comment, such as pressing ESC etc, or selecting any other cell on the worksheet.

If it's not clear what I'm after, please let me know.

Thanks very much in advance for any help.

Correcting Macro Using Comments With Protected Worksheet - Excel

View Content
I have run these two macros:

1) Enter a comment into any cell by double-clicking
2) Protect entire worksheet at once with a password

The problem that I am having is that since having run the workbook protection macro, the comment macro has been disabled. Upon double-clicking on any cell, a dialogue box comes up that will allow for a comment to be entered, but once typed into the dialogue box and enter is pressed, the comment does not display in the cell.

I have tried correcting the code below but need some help, as I still cannot get it to show comments once they have been typed. I also think I have the user interface bit incorrect. I do not want to have the protection disabled while imputting a comment. Rather, I want to have the protection running continuously through the comment adding process so that no other data is unprotected temporarily, and just allowing for comments as an option, if possible.


Code:

Option Explicit

Public oldRange As Range

Private Function wbookSheetProtection(WorkbookTarget As Workbook) As Boolean
Dim wsheet As Worksheet

For Each ws In wbookTarget.Worksheets
If wsheet.ProtectContents = True Then
Comment.Visible = True
Protect Password:="YourPassword", UserInterFaceOnly:=True
Else

Comment.Visible = True


Exit Function

End If

Next ws

End Function



Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
On Error Resume Next

Dim rng As Range
Set rng = Target(1, 1)
'I wasn't sure if I should add a command in here to have this code recognize the previous function
oldRange.Comment.Visible = False

With rng
If Not .Comment Is Nothing Then

If .Comment.Visible = False Then

Comment.Visible = True
Else

Comment.Visible = False

End If

End If

End With


Set oldRange = Target(1, 1)

End Sub

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel As Boolean)
On Error Resume Next
Dim cmtText As String
Dim inputText As String

If Target.Comment Is Nothing Then

cmtText = InputBox("Enter info:", "Comment Info")

If cmtText = "" Then Exit Sub


Target.AddComment Text:=cmtText
Target.Comment.Visible = True
Target.Comment.Shape.TextFrame.AutoSize = True

Else

If Target.Comment.Text <> "" Then

inputText = InputBox("Enter info:", "Comment Info")

If inputText = "" Then Exit Sub

cmtText = Target.Comment.Text & Chr(10) & inputText


Else

cmtText = InputBox("Enter info:", "Comment Info")

End If


Target.ClearComments
Target.AddComment Text:=cmtText
Target.Comment.Visible = True
Target.Comment.Shape.TextFrame.AutoSize = True

End If

Cancel = True


End Sub



Any help you can offer would be greatly appreciated, as I am new to writing macros and this has me stumped.


Thanks

Cannot Remove Comments In Excel Worksheet - Excel

View Content
I have a workbook that I received from a vendor that when I click in a cell a comment appears. There is no line or comment indicator for each comment. So I went into the tools - options - views - comments section and chose no comments. The comments still appear and when I go to the tool bar - view - comments nothing appears. I checked for any VBA code and didn't see anything. I was able to get around this problem by copy/paste special into a new worksheet, but curiosity is killing this cat. Any ideas?

Copying Cell Comments In Excel To A Separate Worksheet - Excel

View Content
Can anyone help me create a macro that will copy all comments to another worksheet in the same workbook and allow me to append to that worksheet whenever new comments are added? I am trying to create a history log for all comments that have been reviewed and approved for my worksheet. I need to have the date the comment was created, the text, the workbook name and the name of the person who created the comment.

Thanks for any help you can give me on this. I have been manually copying and pasting the comments into the history log.

Please Help A Newbie With An Excel Vba Macro Relating To Comments. - Excel

View Content
Can you help me by editing this code so that every instance of the username
is in bold whether it is a new comment or an add to comment? I would prefer
just the username be in bold but the username,hour,time line being all bold
as it is now is acceptable. I tried just about everything I can think of so
far so HELP!

Sub KeyCellsChanged()
Dim strDate As String
Dim cmt As Comment
Dim Username As String
Dim lName As Long

strDate = "ddmmmyy hh:mm"
Username = Application.Username
Set cmt = ActiveCell.Comment
lName = 0

If cmt Is Nothing Then
Set cmt = ActiveCell.AddComment
cmt.Text Text:=Username & " " & Format(Now, strDate) & Chr(10)
lName = InStr(1, cmt.Text, Chr(10)) - 1
cmt.Shape.TextFrame.Characters(1, lName).Font.Bold = True
Else
cmt.Text Text:=cmt.Text & Chr(10) _
& Username & Format(Now, strDate)
lName = InStr(1, cmt.Text, Chr(10)) - 1
cmt.Shape.TextFrame.Characters.Font.Bold = False
cmt.Shape.TextFrame.Characters(1, lName).Font.Bold = True
End If

End Sub


Excel 2007 - Macro To Print Comments With Value Of Cell - Excel

View Content
I know how to print all comments at the end but I need a macro that will print the comments with the value of the cell, not the cell number itself. I have a lot of comments; usually phone numbers for people. When I print out the comments, it gives the cell number. I have to look up the cell number and see the person's name in that cell to associate it with the phone number (example below).

A nice macro that would print the persons name and the comment (if any) would be great. Been searching on net but no luck so far.

Example.

I am getting:

Cell D125
212-512-1234

Cell D125 contains Joe Jones. I would like to get:

Joe Jones (or Cell D125 Joe Jones)
212-512-1234

Thanks.

Random Tutorials
Make a Thermometer Style Chart in Excel
(Intermediate)
Goal Seek Feature in Excel
(Intermediate)
FV() Find the Future Value of Cash Today
         -Savings/Retirement Plan Calculations

(Intermediate)
Remove #N/A Error Result from Empty VLOOKUP() Formulas
(Intermediate)
IF Statement Introduction & Using Nested IF's
(Easy)
Function and Formulas Lookup in Excel
(Easy)
Submit Inquiry Here
  • Prices From $10
Name:*
E-mail:*
Request:*
The macro(s) on this page will be sent with the request.
Contact | Privacy Policy | Disclaimer
Copyright© 2012 TeachExcel.com