Insert a comment
How to insert a comment using the Excel, VBA and Shortcut methods
1. Right-click on the cell where you want to insert a comment. 2. Click Insert Comment. Note: in this example we are inserting a comment in cell B2. |
3. Write the comment in the comment box. |
1. Select the cell where you want to insert a comment. Note: in this example we are inserting a comment in cell B2. |
2. Select the Review tab. |
3. Click New Comment in the Comments group. |
4. Write the comment in the comment box. |
Worksheets("Analysis").Range("B2").AddComment "Quantity of bread left."
End Sub
Worksheets: The Worksheets object represents all of the worksheets in a workbook, excluding chart sheets.
Range: The Range object is a representation of a single cell or a range of cells in a worksheet.
Worksheet Name: Have a worksheet named Analysis.
ADJUSTABLE PARAMETERS
Cells to insert a comment: Select the cell in which to insert a comment by changing the cell reference ("B2") in the VBA code to any cell in the worksheet.
Worksheet Selection: Select the worksheet in which you want insert a comment by changing the Analysis worksheet name, in the VBA code, to any worksheet in the workbook.
Comment: Change the comment by replacing the comment "Quantity of bread left." in the VBA code.
NOTES
Select the cell in which you want to insert a comment and then action the shortcut.
This tutorial explains and provides step by step instructions on how to insert a comment using the Excel, VBA and Shortcut methods.
Excel Methods: Using Excel you can insert a comment in the selected cell with the ribbon option or a cell option.
VBA Methods: Using VBA you can insert a comment in a cell that has been specified in the VBA code.
Shortcut Methods: Using a Shortcut you can instantly insert a comment box in selected cell.