Add Comments in Excel Worksheet Python

MS Excel supports adding comments to the cells in the worksheets to provide additional information. In various cases, comments are used to explain a formula. Moreover, MS Excel allows you to define the font size, height, width, etc. of the comments. In this article, you will learn how to add comments to the Excel worksheets programmatically using Python.

Python API to Add Comments in Excel

In order to add comments to the cells in Excel worksheets, we will use Aspose.Cells for Python via Java. The API lets you create, modify, and convert Excel files from within your Python applications. You can either download the API or install it using the following pip command.

pip install aspose-cells

Add Comments to an Excel Worksheet in Python

The following are the steps to add a comment to a cell in an Excel worksheet using Python.

The following code sample shows how to add a comment in an Excel worksheet using Python.

# Instantiating a Workbook object
workbook = Workbook("workbook.xlsx")
# Obtaining the reference of the first worksheet by passing its sheet index
worksheet = workbook.getWorksheets().get(0)
# Adding a comment to "F5" cell
commentIndex = worksheet.getComments().add("F5")
# Accessing the newly added comment
comment = worksheet.getComments().get(commentIndex)
# Setting the comment note
comment.setNote("Hello Aspose!")
# Saving the Excel file
workbook.save("output.xlsx")

Apply Formatting to Comments in Excel

The following are the steps to apply formatting to the comments in Excel using Python.

The following code sample shows how to set the formatting of the comments in Excel.

# Instantiating a Workbook object
workbook = Workbook("workbook.xlsx")
# Obtaining the reference of the first worksheet by passing its sheet index
worksheet = workbook.getWorksheets().get(0)
# Adding a comment to "F5" cell
commentIndex = worksheet.getComments().add("F5")
# Accessing the newly added comment
comment = worksheet.getComments().get(commentIndex)
# Setting the comment note
comment.setNote("Hello Aspose!")
# Setting the font size of a comment to 14
comment.getFont().setSize(14)
# Setting the font of a comment to bold
comment.getFont().setBold(True)
# Setting the height of the font to 10
comment.setHeightCM(10)
# Setting the width of the font to 2
comment.setWidthCM(2)
# Saving the Excel file
workbook.save("output.xlsx")

Get a Free License

You can use Aspose.Cells for Python via Java without evaluation limitations using a temporary license.

Conclusion

In this article, you have learned how to add comments to the cells in Excel worksheets using Python. Furthermore, you have seen how to apply formatting to the comments programmatically. You can explore other features of the API using the documentation. In case you would have any queries, feel free to post to our forum.

See Also