diff --git a/Document-Processing/Excel/Spreadsheet/Angular/comment.md b/Document-Processing/Excel/Spreadsheet/Angular/comment.md
new file mode 100644
index 000000000..43f35f1b8
--- /dev/null
+++ b/Document-Processing/Excel/Spreadsheet/Angular/comment.md
@@ -0,0 +1,201 @@
+---
+layout: post
+title: Comment in Angular Spreadsheet component | Syncfusion
+description: Learn here all about Comment feature in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
+platform: document-processing
+control: Comment
+documentation: ug
+---
+
+# Comment in Angular Spreadsheet component
+The **Comment** feature allows you to add feedback to cells without changing their values, enabling contextual discussions through threaded **replies**. Unlike [Notes](./notes), Comment include advanced review tools such as **resolve** and **reopen** to track status, plus an optional **Comments Review Pane** for browsing and managing threads.
+
+Cells with comment display a small comment indicator; hover to preview the comment editor. This provides a clear, collaborative workflow while keeping data intact.
+
+
+
+## Author identity
+The Syncfusion Spreadsheet does not automatically track user identity. To tag new comments and replies with an author name, set the `author` property when initializing the Spreadsheet.
+
+```ts
+ import { Component } from '@angular/core';
+ import { SpreadsheetAllModule } from '@syncfusion/ej2-angular-spreadsheet';
+
+ @Component({
+ selector: 'app-root',
+ standalone: true,
+ imports: [SpreadsheetAllModule],
+ // Set the author name. If not set, "Guest User" will be shown by default..
+ template: ``
+ })
+ export class AppComponent {
+ // Place the Author Name Here
+ public author: string = 'Author Name';
+ }
+```
+>If the author property is not set, "Guest User" will be displayed as the author for comment and replies by default.
+
+## Adding a comment
+You can add a **comment** to a cell in several ways:
+* **Context menu**: Right-click the target cell and select **"New Comment"**.
+* **Ribbon**: Go to **Review > Comment > New Comment**.
+* **Keyboard shortcut**: Press Ctrl + Shift + F2 to open the comment editor for the active cell.
+* **Programmatically**:
+ * Use the `updateCell` method with the comment model to add a comment to a specific cell.
+ * Bind comments via code-behind during initial load by associating the comment model with the cell model.
+
+The image below shows that once a comment is posted, the cell displays an indicator, and the comment can be previewed on hover.
+
+
+
+## Adding a reply
+You can add one or more replies to an existing comment to provide additional details or answers:
+* **Context menu**: Right-click the cell that already has a comment, select **Comment > New Reply**, enter your reply, and click **Post**.
+* **Ribbon**: Go to **Review > Comment > New Comment** on a cell that contains a comment. This opens the comment editor in **reply mode**.
+* **Comment editor**: Open the comment editor by hovering over the comment indicator, type your reply, and click **Post**.
+* **Keyboard shortcut**: Press Ctrl + Shift + F2 on a cell that contains a comment to open the comment editor in reply mode.
+
+After posting, the replies appear under the first comment in the comment editor.
+
+
+
+## Editing a comment
+You can edit the content of a comment or its replies directly within the comment editor.
+
+* **Edit first comment**: In the comment editor. Click the **"⋯" (More thread actions)** menu in the header, select the **Edit Comment**, modify the text and click **Post**.
+* **Edit a reply comment**: In the comment editor, hover over the specific reply, click the **"⋯" (More actions)**, select the **Edit Comment**, modify the text and click **Post**.
+
+
+
+## Resolve and Reopen
+The **Resolve thread** option marks a comment thread as completed when the discussion or issue is addressed. When a thread is resolved, its background color changes to indicate the resolved state, and the reply input box and reply menu actions are hidden. Use **Reopen** to restore the comment if further discussion is needed.
+
+### Resolve a comment
+* In the comment editor, click the **"⋯" (More thread actions)** menu in the header and select **Resolve Thread**.
+
+### Reopen a comment
+* In the comment editor, click the **Reopen** button in the header to make the thread active again.
+
+
+
+You can also use the `isResolved` property in the comment model when initializing or updating comments programmatically.
+
+**Example: Using `isResolved` property in the comment model with the `updateCell` method**
+
+```ts
+// Update a cell with a comment using the updateCell method
+ this.spreadsheetObj.updateCell({
+ comment: {
+ author: 'Chistoper', text: 'Are you completed the report',
+ createdTime: 'January 03, 2026 at 5:00 PM',
+ // Set to true to mark the thread as resolved; false keeps it active
+ isResolved: false,
+ replies: [{ author: 'John', text: 'Yes, completed',
+ createdTime: 'January 03, 2026 at 7:00 PM' }]
+ }
+ }, 'Sheet1!D5');
+```
+
+## Deleting a comment or reply
+You can delete either a specific reply or an entire comment thread (including all replies) using the following options:
+
+### Deleting a comment thread
+* **Context menu**: Right-click the cell that contains the comment and select **Comment > Delete Comment**.
+* **Ribbon**: Go to **Review > Comment > Delete Comment** on a cell that contains the comment.
+* **Comment editor**: In the comment editor, click the **"⋯" (More thread actions)** menu in the header and select **Delete Thread** for an active comment or use the **Delete Thread** button in header for a resolved comment.
+
+Deleting a thread removes the comment and all its replies from the cell.
+
+
+
+### Delete a reply
+In the comment editor, hover over the reply and click the **"⋯" (More actions)** menu then select **Delete Comment**.
+
+
+
+## Next and Previous Comment
+The **Review > Comment > Next Comment and Previous Comment** options in the ribbon allow you to quickly navigate between cells that contain comments:
+
+* **Next Comment**: Moves to the next cell with a comment.
+* **Previous Comment**: Moves to the previous cell with a comment.
+
+Navigation starts within the active sheet. When all comments in the active sheet have been visited (end or start reached), the navigation automatically continues to the next or previous sheet that contains comments. This ensures you can review all comments across the workbook without manually switching sheets.
+
+
+
+## Comments review pane
+The **"Comments" review pane** provides a centralized view of all comments in the active sheet, making it easier to manage discussions without switching between individual cells. It offers filtering, inline actions, and navigation, ensuring an efficient review workflow across the workbook.
+
+You can show or hide the "Comments" review pane using:
+
+* **Ribbon**: Go to **Review > Comment > Show Comments**.
+* **Property**: Set the `showCommentsPane` property to true when initializing the Spreadsheet. By default, this property is **false**.
+
+
+
+### Features of the comments review pane
+The "Comments" review pane is rendered within the spreadsheet interface to provide a dedicated space for managing comments efficiently. It acts as a centralized hub where you can view all comment threads, perform actions, and keep discussions organized without navigating cell by cell.
+
+The "Comments" review pane allows you to:
+
+* Add new comment using the **New** button.
+* Filter comments by **All**, **Active**, or **Resolved** to view specific comment threads.
+* Navigate between comments and synchronize selection with the corresponding cells.
+* Perform actions such as:
+ * **Reply** – Add replies directly from the review pane.
+ * **Edit** – Modify the text of a comment or reply.
+ * **Delete** – Remove a reply or an entire thread.
+ * **Resolve/Reopen** – Change the status of a comment.
+
+When the review pane is open, all actions performed in the review pane or in the cell’s comment editor are synchronized:
+
+* Selecting a comment in the review pane highlights the corresponding cell in the sheet.
+* Selecting a cell with a comment focuses the respective comment thread in the review pane.
+* Actions such as **Reply**, **Edit**, **Delete**, and **Resolve/Reopen** update both the pane and the cell comment editor instantly, ensuring consistency across the UI.
+* The review pane dynamically updates when comments are added, deleted, or resolved, so you always see the latest state without refreshing.
+
+## Saving a Workbook with Comments
+You can save spreadsheet data along with **comments** using **File > Save As > Microsoft Excel(.xlsx)**.
+- **MS Excel (.xlsx)** - Preserves all **threaded comments** (modern comments).
+
+> Comments are **not included** when exporting to **.xls**, **.csv**, and **.pdf**.
+
+### Why comments are not saved in `.xls`
+The **.xls** format is based on the older Excel binary structure (BIFF8), which does not support modern features like **threaded comments**.
+Threaded comments introduced in newer Excel versions require the **Open XML** structure used by `.xlsx`.
+
+> To retain threaded comments, always save the workbook in **.xlsx** format.
+
+## Bind Comments via code-behind
+You can bind **comment thread** to cells at initial load by providing a `comment` object in the cell model. Each cell supports **per comment thread**, which can include:
+- **Comment**: `author`, `text`, `createdTime`, `isResolved`
+- **Replies**: A collection of replies. Each reply is an object containing its `author`, `text`, and `createdTime` (no nested replies-of-replies).
+
+In the below sample, comments are added to a specific cell using cell data binding. The "Comments" review pane is shown initially by enabling the `showCommentsPane` property, and comments are added using `updateCell` method in the `created` event.
+
+{% tabs %}
+{% highlight ts tabtitle="app.component.ts" %}
+{% include code-snippet/spreadsheet/angular/comment-cs1/src/app.component.ts %}
+{% endhighlight %}
+
+{% highlight ts tabtitle="main.ts" %}
+{% include code-snippet/spreadsheet/angular/comment-cs1/src/main.ts %}
+{% endhighlight %}
+{% endtabs %}
+
+{% previewsample "/document-processing/samples/spreadsheet/angular/comment-cs1" %}
+
+### Important Notes
+* **One thread per cell**: Attach a single `comment` object per cell. New remarks should be added as replies inside the existing thread.
+* **Author Identity**: The author name for each comment and reply is static once set. When exporting, the author information is preserved for all comments, even if multiple authors exist in the workbook.
+* **New comment**: When the "Comments" review pane is enabled, adding a new comment renders the drafted comment editor directly in the "Comments" review pane.
+
+## Limitations
+* **Un-posted comments are not stored**: If you type in the comment editor and close it without clicking **Post**, the entered text is not saved and will not appear when you reopen the editor. Only posted content is persisted in the comment model.
+* **Comments and Notes cannot coexist**: When a cell contains comment, notes cannot be added. Similarly, if a cell already has a notes, comment cannot be added.
+* **Comments in Print**: Comments are not included in print output.
+* **Non-collaborative**: Real-time multi-user synchronization is not supported. However, when exporting and re-importing the workbook, the author information for each comment and reply is preserved.
+
+## See Also
+* [Notes](./notes)
+* [Hyperlink](./link)
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_adding_a_comment.gif b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_adding_a_comment.gif
new file mode 100644
index 000000000..863da7a34
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_adding_a_comment.gif differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_comment.png b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_comment.png
new file mode 100644
index 000000000..b002a6db3
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_comment_reply.png b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_comment_reply.png
new file mode 100644
index 000000000..548694016
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_comment_reply.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_delete-reply_comment.png b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_delete-reply_comment.png
new file mode 100644
index 000000000..f2385a4f9
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_delete-reply_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_delete_comment.png b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_delete_comment.png
new file mode 100644
index 000000000..0c0ff11f1
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_delete_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_edit_comment.png b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_edit_comment.png
new file mode 100644
index 000000000..2874b11cb
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_edit_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_next_previous_comment.png b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_next_previous_comment.png
new file mode 100644
index 000000000..ece81c396
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_next_previous_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_resolve_reopen.gif b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_resolve_reopen.gif
new file mode 100644
index 000000000..1307efbbb
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_resolve_reopen.gif differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_show_comments.gif b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_show_comments.gif
new file mode 100644
index 000000000..d033c0c9a
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Angular/images/spreadsheet_show_comments.gif differ
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md b/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md
index 01142c092..77f82da3e 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md
@@ -107,6 +107,7 @@ The keyboard shortcuts supported in the spreadsheet are,
| Shift + Enter | Complete the cell editing and select the cell above in the same column. |
| Tab | Complete the cell editing and select the next cell in the same row. |
| Shift + Tab | Complete the cell editing and select the previous cell in the same row. |
+| Ctrl + Shift + F2 | Opens the comment editor for the active cell. Upon pressing the `Esc` key, the comment editor in focus will close. |
| Shift + F2 | Open the dialog box to add or edit notes for the desired cells. Meanwhile, upon pressing the `Esc` key, the dialog box for notes, when in focus, will save and close. |
| Alt | Focus on the active ribbon tab. |
| Left | Move the focus to the previous items in the ribbon content. |
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/comment.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/comment.md
new file mode 100644
index 000000000..d5d264e9b
--- /dev/null
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/comment.md
@@ -0,0 +1,195 @@
+---
+layout: post
+title: Comment in EJ2 TypeScript Spreadsheet control | Syncfusion
+description: Learn here all about Comment feature in Syncfusion EJ2 TypeScript Spreadsheet control of Syncfusion Essential JS 2 and more.
+platform: document-processing
+control: Comment
+documentation: ug
+---
+
+# Comment in EJ2 TypeScript Spreadsheet control
+The **Comment** feature allows you to add feedback to cells without changing their values, enabling contextual discussions through threaded **replies**. Unlike [Notes](./notes), Comment include advanced review tools such as **resolve** and **reopen** to track status, plus an optional **Comments Review Pane** for browsing and managing threads.
+
+Cells with comment display a small comment indicator; hover to preview the comment editor. This provides a clear, collaborative workflow while keeping data intact.
+
+
+
+## Author identity
+The Syncfusion Spreadsheet does not automatically track user identity. To tag new comments and replies with an author name, set the `author` property when initializing the Spreadsheet.
+
+```ts
+ import { Spreadsheet } from '@syncfusion/ej2-spreadsheet';
+ // Initialize Spreadsheet component
+ const spreadsheet: Spreadsheet = new Spreadsheet(
+ // Set the author name, If not set, "Guest User" will be shown as the author by default.
+ author: 'Place the Author Name Here'
+ );
+ // Render initialized Spreadsheet
+ spreadsheet.appendTo('#element');
+```
+>If the author property is not set, "Guest User" will be displayed as the author for comment and replies by default.
+
+## Adding a comment
+You can add a **comment** to a cell in several ways:
+* **Context menu**: Right-click the target cell and select **"New Comment"**.
+* **Ribbon**: Go to **Review > Comment > New Comment**.
+* **Keyboard shortcut**: Press Ctrl + Shift + F2 to open the comment editor for the active cell.
+* **Programmatically**:
+ * Use the `updateCell` method with the comment model to add a comment to a specific cell.
+ * Bind comments via code-behind during initial load by associating the comment model with the cell model.
+
+The image below shows that once a comment is posted, the cell displays an indicator, and the comment can be previewed on hover.
+
+
+
+## Adding a reply
+You can add one or more replies to an existing comment to provide additional details or answers:
+* **Context menu**: Right-click the cell that already has a comment, select **Comment > New Reply**, enter your reply, and click **Post**.
+* **Ribbon**: Go to **Review > Comment > New Comment** on a cell that contains a comment. This opens the comment editor in **reply mode**.
+* **Comment editor**: Open the comment editor by hovering over the comment indicator, type your reply, and click **Post**.
+* **Keyboard shortcut**: Press Ctrl + Shift + F2 on a cell that contains a comment to open the comment editor in reply mode.
+
+After posting, the replies appear under the first comment in the comment editor.
+
+
+
+## Editing a comment
+You can edit the content of a comment or its replies directly within the comment editor.
+
+* **Edit first comment**: In the comment editor. Click the **"⋯" (More thread actions)** menu in the header, select the **Edit Comment**, modify the text and click **Post**.
+* **Edit a reply comment**: In the comment editor, hover over the specific reply, click the **"⋯" (More actions)**, select the **Edit Comment**, modify the text and click **Post**.
+
+
+
+## Resolve and Reopen
+The **Resolve thread** option marks a comment thread as completed when the discussion or issue is addressed. When a thread is resolved, its background color changes to indicate the resolved state, and the reply input box and reply menu actions are hidden. Use **Reopen** to restore the comment if further discussion is needed.
+
+### Resolve a comment
+* In the comment editor, click the **"⋯" (More thread actions)** menu in the header and select **Resolve Thread**.
+
+### Reopen a comment
+* In the comment editor, click the **Reopen** button in the header to make the thread active again.
+
+
+
+You can also use the `isResolved` property in the comment model when initializing or updating comments programmatically.
+
+**Example: Using `isResolved` property in the comment model with the `updateCell` method**
+
+```ts
+// Update a cell with a comment using the updateCell method
+ spreadsheet.updateCell({
+ comment: {
+ author: 'Chistoper', text: 'Are you completed the report',
+ createdTime: 'January 03, 2026 at 5:00 PM',
+ // Set to true to mark the thread as resolved; false keeps it active
+ isResolved: false,
+ replies: [{ author: 'John', text: 'Yes, completed',
+ createdTime: 'January 03, 2026 at 7:00 PM' }]
+ }
+ }, 'Sheet1!D5');
+
+```
+
+## Deleting a comment or reply
+You can delete either a specific reply or an entire comment thread (including all replies) using the following options:
+
+### Deleting a comment thread
+* **Context menu**: Right-click the cell that contains the comment and select **Comment > Delete Comment**.
+* **Ribbon**: Go to **Review > Comment > Delete Comment** on a cell that contains the comment.
+* **Comment editor**: In the comment editor, click the **"⋯" (More thread actions)** menu in the header and select **Delete Thread** for an active comment or use the **Delete Thread** button in header for a resolved comment.
+
+Deleting a thread removes the comment and all its replies from the cell.
+
+
+
+### Delete a reply
+In the comment editor, hover over the reply and click the **"⋯" (More actions)** menu then select **Delete Comment**.
+
+
+
+## Next and Previous Comment
+The **Review > Comment > Next Comment and Previous Comment** options in the ribbon allow you to quickly navigate between cells that contain comments:
+
+* **Next Comment**: Moves to the next cell with a comment.
+* **Previous Comment**: Moves to the previous cell with a comment.
+
+Navigation starts within the active sheet. When all comments in the active sheet have been visited (end or start reached), the navigation automatically continues to the next or previous sheet that contains comments. This ensures you can review all comments across the workbook without manually switching sheets.
+
+
+
+## Comments review pane
+The **"Comments" review pane** provides a centralized view of all comments in the active sheet, making it easier to manage discussions without switching between individual cells. It offers filtering, inline actions, and navigation, ensuring an efficient review workflow across the workbook.
+
+You can show or hide the "Comments" review pane using:
+
+* **Ribbon**: Go to **Review > Comment > Show Comments**.
+* **Property**: Set the `showCommentsPane` property to true when initializing the Spreadsheet. By default, this property is **false**.
+
+
+
+### Features of the comments review pane
+The "Comments" review pane is rendered within the spreadsheet interface to provide a dedicated space for managing comments efficiently. It acts as a centralized hub where you can view all comment threads, perform actions, and keep discussions organized without navigating cell by cell.
+
+The "Comments" review pane allows you to:
+
+* Add new comment using the **New** button.
+* Filter comments by **All**, **Active**, or **Resolved** to view specific comment threads.
+* Navigate between comments and synchronize selection with the corresponding cells.
+* Perform actions such as:
+ * **Reply** – Add replies directly from the review pane.
+ * **Edit** – Modify the text of a comment or reply.
+ * **Delete** – Remove a reply or an entire thread.
+ * **Resolve/Reopen** – Change the status of a comment.
+
+When the review pane is open, all actions performed in the review pane or in the cell’s comment editor are synchronized:
+
+* Selecting a comment in the review pane highlights the corresponding cell in the sheet.
+* Selecting a cell with a comment focuses the respective comment thread in the review pane.
+* Actions such as **Reply**, **Edit**, **Delete**, and **Resolve/Reopen** update both the pane and the cell comment editor instantly, ensuring consistency across the UI.
+* The review pane dynamically updates when comments are added, deleted, or resolved, so you always see the latest state without refreshing.
+
+## Saving a Workbook with Comments
+You can save spreadsheet data along with **comments** using **File > Save As > Microsoft Excel(.xlsx)**.
+- **MS Excel (.xlsx)** - Preserves all **threaded comments** (modern comments).
+
+> Comments are **not included** when exporting to **.xls**, **.csv**, and **.pdf**.
+
+### Why comments are not saved in `.xls`
+The **.xls** format is based on the older Excel binary structure (BIFF8), which does not support modern features like **threaded comments**.
+Threaded comments introduced in newer Excel versions require the **Open XML** structure used by `.xlsx`.
+
+> To retain threaded comments, always save the workbook in **.xlsx** format.
+
+## Bind Comments via code-behind
+You can bind **comment thread** to cells at initial load by providing a `comment` object in the cell model. Each cell supports **per comment thread**, which can include:
+- **Comment**: `author`, `text`, `createdTime`, `isResolved`
+- **Replies**: A collection of replies. Each reply is an object containing its `author`, `text`, and `createdTime` (no nested replies-of-replies).
+
+In the below sample, comments are added to a specific cell using cell data binding. The "Comments" review pane is shown initially by enabling the `showCommentsPane` property, and comments are added using `updateCell` method in the `created` event.
+
+{% tabs %}
+{% highlight ts tabtitle="index.ts" %}
+{% include code-snippet/spreadsheet/javascript-es6/comemnt-cs1/index.ts %}
+{% endhighlight %}
+{% highlight html tabtitle="index.html" %}
+{% include code-snippet/spreadsheet/javascript-es6/comemnt-cs1/index.html %}
+{% endhighlight %}
+{% endtabs %}
+
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/comemnt-cs1" %}
+
+### Important Notes
+* **One thread per cell**: Attach a single `comment` object per cell. New remarks should be added as replies inside the existing thread.
+* **Author Identity**: The author name for each comment and reply is static once set. When exporting, the author information is preserved for all comments, even if multiple authors exist in the workbook.
+* **New comment**: When the "Comments" review pane is enabled, adding a new comment renders the drafted comment editor directly in the "Comments" review pane.
+
+## Limitations
+* **Un-posted comments are not stored**: If you type in the comment editor and close it without clicking **Post**, the entered text is not saved and will not appear when you reopen the editor. Only posted content is persisted in the comment model.
+* **Comments and Notes cannot coexist**: When a cell contains comment, notes cannot be added. Similarly, if a cell already has a notes, comment cannot be added.
+* **Comments in Print**: Comments are not included in print output.
+* **Non-collaborative**: Real-time multi-user synchronization is not supported. However, when exporting and re-importing the workbook, the author information for each comment and reply is preserved.
+
+## See Also
+* [Notes](./notes)
+* [Hyperlink](./link)
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_adding_a_comment.gif b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_adding_a_comment.gif
new file mode 100644
index 000000000..863da7a34
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_adding_a_comment.gif differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_comment.png b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_comment.png
new file mode 100644
index 000000000..b002a6db3
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_comment_reply.png b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_comment_reply.png
new file mode 100644
index 000000000..548694016
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_comment_reply.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_delete-reply_comment.png b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_delete-reply_comment.png
new file mode 100644
index 000000000..f2385a4f9
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_delete-reply_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_delete_comment.png b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_delete_comment.png
new file mode 100644
index 000000000..0c0ff11f1
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_delete_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_edit_comment.png b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_edit_comment.png
new file mode 100644
index 000000000..2874b11cb
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_edit_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_next_previous_comment.png b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_next_previous_comment.png
new file mode 100644
index 000000000..ece81c396
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_next_previous_comment.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_resolve_reopen.gif b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_resolve_reopen.gif
new file mode 100644
index 000000000..1307efbbb
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_resolve_reopen.gif differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_show_comments.gif b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_show_comments.gif
new file mode 100644
index 000000000..d033c0c9a
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/images/spreadsheet_show_comments.gif differ
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/keyboard-shortcuts.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/keyboard-shortcuts.md
index c997bad60..6a6669c1e 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/keyboard-shortcuts.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/keyboard-shortcuts.md
@@ -107,6 +107,7 @@ The keyboard shortcuts supported in the spreadsheet are,
| Shift + Enter | Complete the cell editing and select the cell above in the same column. |
| Tab | Complete the cell editing and select the next cell in the same row. |
| Shift + Tab | Complete the cell editing and select the previous cell in the same row. |
+| Ctrl + Shift + F2 | Opens the comment editor for the active cell. Upon pressing the `Esc` key, the comment editor in focus will close. |
| Shift + F2 | Open the dialog box to add or edit notes for the desired cells. Meanwhile, upon pressing the `Esc` key, the dialog box for notes, when in focus, will save and close. |
| Alt | Focus on the active ribbon tab. |
| Left | Move the focus to the previous items in the ribbon content. |
diff --git a/Document-Processing/code-snippet/spreadsheet/angular/comment-cs1/angular.json b/Document-Processing/code-snippet/spreadsheet/angular/comment-cs1/angular.json
new file mode 100644
index 000000000..98b735ee4
--- /dev/null
+++ b/Document-Processing/code-snippet/spreadsheet/angular/comment-cs1/angular.json
@@ -0,0 +1,70 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "newProjectRoot": "projects",
+ "projects": {
+ "syncfusion-component": {
+ "projectType": "application",
+ "schematics": {},
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "architect": {
+ "build": {
+ "builder": "@angular-devkit/build-angular:browser",
+ "options": {
+ "outputPath": "dist",
+ "index": "index.html",
+ "main": "src/main.ts",
+ "tsConfig": "tsconfig.json",
+ "styles": [
+ "src/styles.css"
+ ],
+ "assets": []
+ },
+ "configurations": {
+ "production": {
+ "budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "500kb",
+ "maximumError": "10mb"
+ },
+ {
+ "type": "anyComponentStyle",
+ "maximumWarning": "2kb",
+ "maximumError": "4kb"
+ }
+ ],
+ "outputHashing": "all"
+ },
+ "development": {
+ "buildOptimizer": false,
+ "optimization": false,
+ "vendorChunk": true,
+ "extractLicenses": false,
+ "sourceMap": true,
+ "namedChunks": true
+ }
+ },
+ "defaultConfiguration": "production"
+ },
+ "serve": {
+ "builder": "@angular-devkit/build-angular:dev-server",
+ "configurations": {
+ "production": {
+ "buildTarget": "syncfusion-component:build:production"
+ },
+ "development": {
+ "buildTarget": "syncfusion-component:build:development"
+ }
+ },
+ "defaultConfiguration": "development"
+ }
+ }
+ }
+ },
+ "cli": {
+ "analytics": false
+ }
+}
\ No newline at end of file
diff --git a/Document-Processing/code-snippet/spreadsheet/angular/comment-cs1/index.html b/Document-Processing/code-snippet/spreadsheet/angular/comment-cs1/index.html
new file mode 100644
index 000000000..e57f94347
--- /dev/null
+++ b/Document-Processing/code-snippet/spreadsheet/angular/comment-cs1/index.html
@@ -0,0 +1,31 @@
+
+
+
+ Syncfusion Angular Spreadsheet
+
+
+
+
+
+
+
+
+
+