diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md b/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md
index a7124ce9b..90d5c4544 100644
--- a/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md
+++ b/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md
@@ -8,10 +8,34 @@ documentation: ug
---
# Getting Started with Windows Forms Spreadsheet
+This section briefly explains how to include the [Syncfusion® WinForms Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) component in Windows Forms App using Visual Studio.
-This section helps you to get started with the Spreadsheet
+## Prerequisites
+* [System requirements for WinForms components](https://help.syncfusion.com/windowsforms/system-requirements)
-## Assemblies deployment
+## Create a new Windows Forms App in Visual Studio
+
+You can create a **Windows Forms Application** using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/dotnet/desktop/winforms/get-started/create-app-visual-studio) or the [Syncfusion® Windows Forms](https://help.syncfusion.com/windowsforms/visual-studio-integration/template-studio).
+
+## Assemblies Deployment
+
+To add a WinForms spreadsheet component to your application by installing it via NuGet packages(Recommended) or by manually adding the required assemblies to the project.
+
+{% tabcontents %}
+
+{% tabcontent NuGet Package %}
+
+### Install Syncfusion® Windows Forms Spreadsheet NuGet packages
+
+To add **Windows Forms Spreadsheet** component in the application, open the NuGet package manager in Visual Studio (*Tools → NuGet Package Manager → Manage NuGet Packages for Solution*), search and install:
+
+• [Syncfusion.Spreadsheet.Windows](https://www.nuget.org/packages/Syncfusion.Spreadsheet.Windows)
+
+{% endtabcontent %}
+
+{% tabcontent Assemblies(.dll) %}
+
+### Add Syncfusion® WinForms Spreadsheet Assemblies
Below table describes, list of assemblies required to be added in project when the [WinForms Spreadsheet](https://www.syncfusion.com/winforms-ui-controls/spreadsheet) control is used in your application.
@@ -70,167 +94,122 @@ Syncfusion.Pdf.Base.dll
Contains the base and fundamental classes for creating PDF.
-## Create a simple application with Spreadsheet
+{% endtabcontent %}
+
+{% endtabcontents %}
-WinForms Spreadsheet control can be added into the application either via designer or via coding.
+## Add Windows Forms Spreadsheet component
-### Adding a control via designer
+WinForms Spreadsheet control can be added to an application either through the designer (XAML) or programmatically using code.
-1.Create new Windows Forms application in Visual Studio.
+{% tabcontents %}
+
+{% tabcontent Via Designer %}
-2.Open the Visual Studio **Tool** **box**. Navigate to Syncfusion® Controls tab, and find the Spreadsheet/SpreadsheetRibbon toolbox items
+1.Open the Visual Studio **Tool** **box**. Navigate to Syncfusion® Controls tab, and find the Spreadsheet/SpreadsheetRibbon toolbox items.

-3.Drag `Spreadsheet` and drop in the Designer area from the Toolbox
-
-4.Ribbon can be added to the application by dragging `SpreadsheetRibbon` to the Designer area.
-
-5.To make an interaction between Ribbon items and `Spreadsheet`, bind the Spreadsheet as DataContext to the `SpreadsheetRibbon`.
-
-### Adding control via coding
-
-Spreadsheet is available in the following namespace `Syncfusion.Windows.Forms.Spreadsheet` and it can be created programmatically by using below code.
-
-_For_ _Spreadsheet_
+2.Drag `Spreadsheet` and drop in the Designer area from the Toolbox.
{% tabs %}
-
-{% highlight c# %}
-
-private Spreadsheet spreadsheet;
-spreadsheet = new Spreadsheet();
-SpreadsheetRibbon ribbon = new SpreadsheetRibbon() { Spreadsheet = spreadsheet };
-spreadsheet.Dock = DockStyle.Fill;
-spreadsheet.Anchor = AnchorStyles.Left | AnchorStyles.Top;
-
-this.Controls.Add(spreadsheet);
-this.Controls.Add(ribbon);
-
+{% highlight c# tabtitle="Form1.Designer.cs" %}
+....
+partial class Form1
+{
+....
+private void InitializeComponent()
+{
+Spreadsheet spreadsheet = new Spreadsheet();
+}
+....
+}
+....
{% endhighlight %}
-
{% endtabs %}
-_You_ _can_ _get_ _the_ _following_ _output_ _when_ _execute_ _the_ _application_.
-
-
-
-## Creating a new Excel Workbook
-
-A new workbook can be created by using a [Create](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Create_System_Int32_) method with specified number of worksheets. By default, a workbook will be created with single worksheet.
+3.Ribbon can be added to the application by dragging `SpreadsheetRibbon` to the Designer area.
{% tabs %}
-{% highlight c# %}
-
-spreadsheet.Create(2);
-
+{% highlight c# tabtitle="Form1.Designer.cs" %}
+....
+partial class Form1
+{
+....
+private void InitializeComponent()
+{
+Spreadsheet spreadsheet = new Spreadsheet();
+SpreadsheetRibbon spreadsheetRibbon = new SpreadsheetRibbon();
+}
+....
+}
+....
{% endhighlight %}
{% endtabs %}
-## Opening an existing Excel Workbook
-
-The Excel Workbook can be opened in Spreadsheet using the [Open](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Open_Syncfusion_XlsIO_IWorkbook_) method in various ways,
-
-{% tabs %}
-{% highlight c# %}
-
-//Using Stream,
-spreadsheet.Open (Stream file);
-
-//Using String,
-spreadsheet.Open (string file);
-
-//Using Workbook,
-spreadsheet.Open(IWorkbook workbook);
-
-{% endhighlight %}
-{% endtabs %}
+4.To make an interaction between Ribbon items and `Spreadsheet`, bind the Spreadsheet as DataContext to the `SpreadsheetRibbon`.
{% tabs %}
-{% highlight c# %}
-
-spreadsheet.Open (@"..\..\Data\Outline.xlsx");
-
+{% highlight c# tabtitle="Form1.Designer.cs" %}
+....
+partial class Form1
+{
+....
+private void InitializeComponent()
+{
+Spreadsheet spreadsheet = new Spreadsheet();
+SpreadsheetRibbon spreadsheetRibbon = new SpreadsheetRibbon();
+spreadsheetRibbon.Spreadsheet = spreadsheet;
+}
+....
+}
+....
{% endhighlight %}
{% endtabs %}
-
-
-
-Opening Excel File in Spreadsheet
- {:.caption}
-
-## Saving the Excel Workbook
-
-The Excel workbook can be saved in Spreadsheet using [Save](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Save) method. If the workbook already exists in the system drive, it will be saved in the same location, otherwise Save Dialog box opens to save the workbook in user specified location.
-
-{% tabs %}
-{% highlight c# %}
-
-spreadsheet.Save();
+{% endtabcontent %}
+
+{% tabcontent Via Coding %}
-{% endhighlight %}
-{% endtabs %}
-You can also use [SaveAs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_SaveAs) method directly to save the existing excel file with modifications.
+Spreadsheet is available in the following namespace **[Syncfusion.Windows.Forms.Spreadsheet](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.html)** and it can be created programmatically by using below code.
-The `SaveAs` method in Spreadsheet can be used in various ways,
+_For_ _Spreadsheet_
{% tabs %}
-{% highlight c# %}
-
-//Using Stream,
-spreadsheet.SaveAs (Stream file);
+{% highlight c# tabtitle="Form1.cs" %}
+
+....
+ public Form1()
+ {
+ InitializeComponent();
+ Spreadsheet spreadsheet = new Spreadsheet();
+ SpreadsheetRibbon ribbon = new SpreadsheetRibbon() { Spreadsheet = spreadsheet };
+ spreadsheet.Dock = DockStyle.Fill;
+ spreadsheet.Anchor = AnchorStyles.Left | AnchorStyles.Top;
+ this.Controls.Add(spreadsheet);
+ this.Controls.Add(ribbon);
+ }
+....
-//Using String,
-spreadsheet.SaveAs (string file);
-
-//For Dialog box,
-spreadsheet.SaveAs();
-
{% endhighlight %}
{% endtabs %}
-## Displaying charts and sparklines
-
-For importing charts and sparklines in Spreadsheet, add the following assembly as reference into the application.
-
-Assembly: **Syncfusion.SpreadsheetHelper.Windows.dll**
-### Charts
+{% endtabcontent %}
-Create an instance of Syncfusion.Windows.Forms.SpreadsheetHelper.[GraphicChartCellRenderer](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.SpreadsheetHelper.GraphicChartCellRenderer.html) and add that renderer into [GraphicCellRenderers](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.GraphicCells.GraphicModel.html#Syncfusion_Windows_Forms_Spreadsheet_GraphicCells_GraphicModel_GraphicCellRenderers) collection by using the helper method [AddGraphicChartCellRenderer](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.GraphicCells.GraphicCellHelper.html#Syncfusion_Windows_Forms_Spreadsheet_GraphicCells_GraphicCellHelper_AddGraphicChartCellRenderer_Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Syncfusion_Windows_Forms_Spreadsheet_GraphicCells_IGraphicCellRenderer_) which is available under the namespace `Syncfusion.Windows.Forms.Spreadsheet.GraphicCells`.
-
-{% tabs %}
-{% highlight c# %}
-
-public Form1()
-{
- InitializeComponent();
-
- //For importing charts,
- this.spreadsheet.AddGraphicChartCellRenderer(new GraphicChartCellRenderer());
-}
+{% endtabcontents %}
-{% endhighlight %}
-{% endtabs %}
+## Run the application
-### Sparklines
+Press Ctrl+F5 (Windows) or ⌘+F5 (macOS) to launch the application.The output will appear as follows:
-Create an instance of Syncfusion.Windows.Forms.SpreadsheetHelper.[SparklineCellRenderer](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.SpreadsheetHelper.SparklineCellRenderer.html) and add that renderer into Spreadsheet by using the helper method [AddSparklineCellRenderer](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.GraphicCells.GraphicCellHelper.html#Syncfusion_Windows_Forms_Spreadsheet_GraphicCells_GraphicCellHelper_AddSparklineCellRenderer_Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Syncfusion_Windows_Forms_Spreadsheet_CellRenderer_ISpreadsheetCellRenderer_) which is available under the namespace `Syncfusion.Windows.Forms.Spreadsheet.GraphicCells`.
-
-{% tabs %}
-{% highlight c# %}
+
-public Form1()
-{
- InitializeComponent();
-
- //For importing sparklines,
- this.spreadsheet.AddSparklineCellRenderer(new SparklineCellRenderer());
-}
+To learn how to create, open, and save files in the WPF Spreadsheet Component, see [Workbook Operations](Workbook-Operations).
-{% endhighlight %}
-{% endtabs %}
+N>[View Sample in GitHub.](https://github.com/SyncfusionExamples/winforms-spreadsheet-getting-started)
-N> You can refer to our [WinForms Spreadsheet](https://www.syncfusion.com/winforms-ui-controls/spreadsheet) control feature tour page for its groundbreaking feature representations. You can also explore our [WinForms Spreadsheet example](https://github.com/syncfusion/winforms-demos/tree/master/spreadsheet) that shows you how to render and configure the Spreadsheet.
\ No newline at end of file
+## See Also
+- [Data Management](Data-Management)
+- [Display Charts and Sparklines](Shapes)
diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Overview-image/wf-spreadsheet-overview-image.png b/Document-Processing/Excel/Spreadsheet/Winforms/Overview-image/wf-spreadsheet-overview-image.png
new file mode 100644
index 000000000..b368808d4
Binary files /dev/null and b/Document-Processing/Excel/Spreadsheet/Winforms/Overview-image/wf-spreadsheet-overview-image.png differ
diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md b/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md
index 1faf17225..2fb08aa6f 100644
--- a/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md
+++ b/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md
@@ -9,54 +9,61 @@ documentation: ug
# Windows Forms Spreadsheet Overview
-The [WinForms Spreadsheet](https://www.syncfusion.com/winforms-ui-controls/spreadsheet) is an Excel inspired control that allows you to create, edit, view and format the Microsoft Excel files without Excel installed. It provides absolute ease of use UI experience with integrated ribbon to cover any possible business scenario. Spreadsheet comes with built-in calculation engine with support for 400+ most widely used formulas.
+The [Syncfusion® WinForms Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) is an Excel inspired control that allows you to create, edit, view and format the Microsoft Excel files without Excel installed. It provides absolute ease of use UI experience with integrated ribbon to cover any possible business scenario. Spreadsheet comes with built-in calculation engine with support for 400+ most widely used formulas.
+
+
Spreadsheet includes several advanced features like
* **Ribbon** – Ribbon integrated with organically enhanced UI experience.
-* **Editing** **and** **Selection**-Interactive support for editing and cell selection in workbook.
+* **[Editing](Editing) and [Selection](Selection)**-Interactive support for editing and cell selection in workbook.
-* **Formulas** - Provides support for 400+ most widely used formulas which any business user needs and allows you to add, remove and edit the formulas like in excel.
+* **[Formulas](Formulas)** - Provides support for 400+ most widely used formulas which any business user needs and allows you to add, remove and edit the formulas like in excel.
-* **Name** **Manager** – Supports the name ranges in the formulas. By using the name ranges, you can specify the name of the cell range, and then you can use it in the formula more easily without hassling of remembering cell locations.
+* **[Name Manager](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/formulas#named-ranges)** – Supports the name ranges in the formulas. By using the name ranges, you can specify the name of the cell range, and then you can use it in the formula more easily without hassling of remembering cell locations.
-* **Data** **validation** – Provides support to ensure the data integrity by enforcing end users to enter valid data into the cells and if entered data does not meet the specified criteria, and error message is displayed.
+* **[Data validation](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/editing#data-validation)** – Provides support to ensure the data integrity by enforcing end users to enter valid data into the cells and if entered data does not meet the specified criteria, and error message is displayed.
-* **Floating** **Cells**- Provides support for floating cell mode that is when the text exceeds the length of the cell, it will float the text to the adjacent cell.
+* **[Floating Cells](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/formatting#wrap-text)**- Provides support for floating cell mode that is when the text exceeds the length of the cell, it will float the text to the adjacent cell.
-* **Merge** **Cells** - Merge two or more adjacent cells into a single cell and display the contents of one cell in the merged cell.
+* **[Merge Cells](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/formatting#merge-cells)** - Merge two or more adjacent cells into a single cell and display the contents of one cell in the merged cell.
-* **Conditional** **Formatting**- Provides support for excel compatible conditional formatting and allows you to apply formats to a cell or range of cells depending on the value of cells or formula that meet specific criteria. Also provides support to define and import the conditional formatting rules such as Data Bars, Icon Sets and Color Scales options which are used to visualize the data.
+* **[Conditional Formatting](Conditional-Formatting)**- Provides support for excel compatible conditional formatting and allows you to apply formats to a cell or range of cells depending on the value of cells or formula that meet specific criteria. Also provides support to define and import the conditional formatting rules such as Data Bars, Icon Sets and Color Scales options which are used to visualize the data.
-* **Cell** **Comments**- Supports comments that provide additional information about a cell such as what the value represents. And it would be useful if you want the end users to understand the data in the cells more deeply.
+* **[Cell Comments](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/interactive-features#cell-comments)**- Supports comments that provide additional information about a cell such as what the value represents. And it would be useful if you want the end users to understand the data in the cells more deeply.
-* **Hyperlinks** **and** **Bookmarks**- Provides support to import, create, and edit hyperlinks and bookmarks. The hyperlink is a convenient way to navigate or browse data within a worksheet or other worksheets in a workbook.
+* **[Hyperlinks and Bookmarks](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/editing#hyperlink)**- Provides support to import, create, and edit hyperlinks and bookmarks. The hyperlink is a convenient way to navigate or browse data within a worksheet or other worksheets in a workbook.
-* **Undo**/**Redo** - Provides support to undo or redo the changes that you have made in the workbook.
+* **[Undo/Redo](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/interactive-features#undo-or-redo)** - Provides support to undo or redo the changes that you have made in the workbook.
-* **Clipboard** **Operations** – Provides support for Cut/Copy/Paste Operations in Spreadsheet.
+* **[Clipboard Operations](Interactive-Features)** – Provides support for Cut/Copy/Paste Operations in Spreadsheet.
-* **Fill** **Series** – Provides support to automatically fill cells with data that follows or completes a pattern.
+* **Fill Series** – Provides support to automatically fill cells with data that follows or completes a pattern.
-* **Freeze** **panes** – Provides support to freeze rows/columns.
+* **[Freeze panes](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/rows-and-columns#freezing-rows-and-columns)** – Provides support to freeze rows/columns.
-* **Resizing** **and** **Hiding** – Provides interactive support to resize or hide/unhide the rows and columns.
+* **[Resizing and Hiding](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/rows-and-columns#hiding-rows-and-columns)** – Provides interactive support to resize or hide/unhide the rows and columns.
-* **Charts**, **Pictures** **and** **Textboxes** - Provides support to import Charts, Pictures and Textboxes.
+* **[Charts, Pictures and Textboxes](Shapes)** - Provides support to import Charts, Pictures and Textboxes.
-* **Sparklines** – Provides support to import Sparklines.
+* **[Sparklines](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/shapes#sparklines)** – Provides support to import Sparklines.
-* **Outlines** - Provides support to group or ungroup rows and columns.
+* **[Outlines](Outline)** - Provides support to group or ungroup rows and columns.
-* **Workbook** **and** **Worksheet** **Protection**- Provides support to protect the worksheet and also supports to lock-down the structure and window of workbook, which enables you to prevent workbook from any structural change or from any change in size.
+* **[Workbook and Worksheet Protection](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/worksheet-management#protection)**- Provides support to protect the worksheet and also supports to lock-down the structure and window of workbook, which enables you to prevent workbook from any structural change or from any change in size.
-* **Conversion** – Provides support to export the workbook to PDF, HTML, Image and CSV.
+* **[Conversion](Conversion)** – Provides support to export the workbook to PDF, HTML, Image and CSV.
-* **Zooming** – Provides support to zoom in and zoom out of the worksheet view.
+* **[Zooming](https://help.syncfusion.com/document-processing/excel/spreadsheet/winforms/worksheet-management#zooming)** – Provides support to zoom in and zoom out of the worksheet view.
-* **Localization** - Provides support to localize all the static text in a Ribbon and all dialogs to any desired language.
+* **[Localization](localization)** - Provides support to localize all the static text in a Ribbon and all dialogs to any desired language.
* **Supported file types** - Ability to import the different types of excel which are XLS, XLSX, XLSM, XLT, XLTX, CSV(Comma delimited) respectively.
-N> You can also explore our [WinForms Spreadsheet example](https://github.com/syncfusion/winforms-demos/tree/master/spreadsheet) that shows you how to render and configure the Spreadsheet.
\ No newline at end of file
+## Related Link
+- [Getting Started](Getting-Started)
+- [API Reference](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.html)
+- [Online Demos](https://github.com/syncfusion/spreadsheet-editor-sdk-winforms-demos)
+- [GitHub Samples](https://github.com/SyncfusionExamples/winforms-spreadsheet-examples)
+- [Release Notes](https://help.syncfusion.com/wpf/release-notes/v33.1.46)
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md b/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md
new file mode 100644
index 000000000..f33da8d16
--- /dev/null
+++ b/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md
@@ -0,0 +1,111 @@
+---
+layout: post
+title: Workbook Operations in Windows Forms Spreadsheet control | Syncfusion®
+description: Learn how to create, open, and save Excel workbooks, as well as how to display charts and sparklines in Syncfusion® Windows Forms Spreadsheet.
+platform: document-processing
+control: Spreadsheet
+documentation: ug
+---
+
+# Workbook Operations in Windows Forms Spreadsheet
+
+This section explains how to manage Excel workbooks in Spreadsheet, including creating new files, opening existing workbooks from various sources, and saving changes efficiently.
+
+## Creating a new Excel Workbook
+
+A new workbook can be created by using a [Create](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Create_System_Int32_) method with specified number of worksheets. By default, a workbook will be created with single worksheet.
+
+{% tabs %}
+{% highlight c# tabtitle="Form1.cs" %}
+....
+public Form1()
+{
+ InitializeComponent();
+ spreadsheet.Create(2);
+}
+....
+{% endhighlight %}
+{% endtabs %}
+
+
+## Opening an existing Excel Workbook
+
+The Excel Workbook can be opened in Spreadsheet using the [Open](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Open_Syncfusion_XlsIO_IWorkbook_) method in various ways,
+
+{% tabs %}
+{% highlight c# tabtitle="Form1.cs" %}
+....
+public Form1()
+{
+ InitializeComponent();
+
+ // Using Stream
+ spreadsheet.Open(Stream file);
+
+ // Using string (file path)
+ spreadsheet.Open(string file);
+
+ // Using Workbook
+ spreadsheet.Open(IWorkbook workbook);
+
+ // Example: Open from file path
+ spreadsheet.Open(@"..\..\Data\Outline.xlsx");
+}
+....
+{% endhighlight %}
+{% endtabs %}
+
+
+
+
+
+Opening Excel File in Spreadsheet
+ {:.caption}
+
+## Saving the Excel Workbook
+
+The Excel workbook can be saved in Spreadsheet using [Save](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Save) method. If the workbook already exists in the system drive, it will be saved in the same location, otherwise Save Dialog box opens to save the workbook in user specified location.
+
+{% tabs %}
+{% highlight c# tabtitle="Form1.cs" %}
+....
+public Form1()
+{
+ InitializeComponent();
+
+ .....
+ spreadsheet.Save();
+ .....
+}
+....
+{% endhighlight %}
+{% endtabs %}
+
+
+You can also use [SaveAs](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_SaveAs) method directly to save the existing excel file with modifications.
+
+The `SaveAs` method in Spreadsheet can be used in various ways,
+
+{% tabs %}
+{% highlight c# tabtitle="Form1.cs" %}
+....
+public Form1()
+{
+ InitializeComponent();
+
+ .....
+
+ // Using Stream
+ spreadsheet.SaveAs(Stream file);
+
+ // Using string (file path)
+ spreadsheet.SaveAs(string file);
+
+ // Using dialog box
+ spreadsheet.SaveAs();
+
+ .....
+}
+....
+{% endhighlight %}
+{% endtabs %}