diff --git a/Document-Processing/Excel/Excel-Library/NET/FAQ.md b/Document-Processing/Excel/Excel-Library/NET/FAQ.md
index 97903e9e9d..7c57a96e53 100644
--- a/Document-Processing/Excel/Excel-Library/NET/FAQ.md
+++ b/Document-Processing/Excel/Excel-Library/NET/FAQ.md
@@ -85,7 +85,7 @@ The frequently asked questions in Essential® XlsIO are listed bel
* [How to resolve performance issue when deleting a large number of rows?](faqs/how-to-resolve-performance-issue-when-deleting-a-large-number-of-rows)
* [How to hide columns using column name?](faqs/how-to-hide-columns-using-column-name)
* [How to convert xls document to xlsx format document?](faqs/how-to-convert-xls-document-to-xlsx-format-document)
-* [How to access a table in Excel document using the table name?](faqs/how-to-access-a-table-in-Excel-document-using-the-table-name)
+* [How to access a table in Excel document using the table name?](faqs/how-to-access-a-table-in-excel-document-using-the-table-name)
* [How to check whether the loaded file is an Excel file?](faqs/how-to-check-whether-the-loaded-file-is-an-excel-file)
* [How to insert a picture into a cell in an Excel document?](faqs/how-to-insert-a-picture-into-a-cell-in-an-excel-document)
* [How to get the RGB color value for the applied cell color?](faqs/how-to-get-the-rgb-color-value-for-the-applied-cell-color)
@@ -115,13 +115,13 @@ The frequently asked questions in Essential® XlsIO are listed bel
* [How to set and format time values in Excel using TimeSpan?](faqs/how-to-set-and-format-time-values-in-excel-using-timespan)
* [How to set the default font and font size in an Excel Workbook?](faqs/how-to-set-the-default-font-and-font-size-in-an-Excel-workbook)
* [How to set traffic lights icon in Excel conditional formatting using C#?](faqs/how-to-set-traffic-lights-icon-in-Excel-conditional-formatting-using-C#)
-* [How to apply TimePeriod conditional formatting in Excel using C#?](faqs/how-to-apply-TimePeriod-conditional-formatting-in-Excel)
+* [How to apply TimePeriod conditional formatting in Excel using C#?](faqs/how-to-apply-timeperiod-conditional-formatting-in-excel)
* [How to get the list of worksheet names in an Excel workbook?](faqs/how-to-get-the-list-of-worksheet-names-in-an-Excel-workbook)
* [How to switch chart series data interpretation from horizontal (rows) to vertical (columns) in Excel?](faqs/how-to-switch-chart-series-data-interpretation-from-horizontal-(rows)-to-vertical-(columns)-in-excel)
* [How to add Oval shape to Excel chart using XlsIO?](faqs/how-to-add-oval-shape-to-excel-chart)
* [How to show the leader line on Excel chart?](faqs/how-to-show-the-leader-line-on-excel-chart)
* [How to set the background color for Excel Chart in C#?](faqs/how-to-set-the-background-color-for-Excel-chart-in-C#)
-* [How to override an Excel document using C#?](faqs/how-to-override-an-Excel-document-using-C#)
+* [How to override an Excel document using C#?](faqs/how-to-override-an-excel-document#)
* [Does XlsIO support converting an empty Excel document to PDF?](faqs/does-xlsio-support-converting-an-empty-Excel-document-to-PDF)
* [What is the maximum supported text length for data validation in Excel?](faqs/what-is-the-maximum-supported-text-length-for-data-validation-in-excel)
* [How to set column width for a pivot table range in an Excel Document?](faqs/how-to-set-column-width-for-a-pivot-table-range-in-an-Excel-Document)
diff --git a/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-uwp-c-sharp.md b/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-uwp-c-sharp.md
index e29a97b6a6..e9a2745fd0 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-uwp-c-sharp.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-uwp-c-sharp.md
@@ -9,7 +9,7 @@ documentation: UG
## Opening an existing workbook
-You can open an existing workbook by using the overloads of [Open](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbooks.html#Syncfusion_XlsIO_IWorkbooks_Open_System_String_) methods of [IWorkbooks](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbooks.html) interface.
+You can open an existing workbook by using the overloads of [Open](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbooks.html#Syncfusion_XlsIO_IWorkbooks_Open_System_String_) methods of [IWorkbooks](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbooks.html) interface.
{% tabs %}
{% highlight c# tabtitle="C# [Windows-specific]" %}
@@ -33,7 +33,7 @@ IWorkbook workbook = await application.Workbooks.OpenAsync(file, ExcelOpenType.A
## Saving an Excel workbook
-You can also save the created or manipulated workbook using overloads of [SaveAs](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAs_System_String_System_Web_HttpResponse_Syncfusion_XlsIO_ExcelDownloadType_Syncfusion_XlsIO_ExcelHttpContentType_) methods.
+You can also save the created or manipulated workbook using overloads of [SaveAs](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAs_System_String_System_Web_HttpResponse_Syncfusion_XlsIO_ExcelDownloadType_Syncfusion_XlsIO_ExcelHttpContentType_) methods.
{% tabs %}
{% highlight c# tabtitle="C# [Windows-specific]" %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-working-with-excel-files-in-net6.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-working-with-excel-files-in-net6.md
index cece45af13..f9c21546f7 100644
--- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-working-with-excel-files-in-net6.md
+++ b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-working-with-excel-files-in-net6.md
@@ -11,9 +11,9 @@ Yes. XlsIO allows you to create, edit and convert Excel files in .NET 6.0
## See Also
-* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
-* [Does Essential® XlsIO provide support for Client Profile?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-essential-xlsio-provide-support-for-client-profile)
-* [How to create and open Excel Template files by using XlsIO?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-create-and-open-excel-template-files-by-using-xlsio)
-* [Does XlsIO support Excel files with macros that are digitally signed?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-xlsio-support-excel-files-with-macros-that-are-digitally-signed)
-* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
-* [How to open an Excel document that is already open in MS-Excel?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-open-an-excel-document-that-is-already-open-in-msexcel)
\ No newline at end of file
+* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
+* [Does Essential® XlsIO provide support for Client Profile?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-essential-xlsio-provide-support-for-client-profile)
+* [How to create and open Excel Template files by using XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-create-and-open-excel-template-files-by-using-xlsio)
+* [Does XlsIO support Excel files with macros that are digitally signed?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-xlsio-support-excel-files-with-macros-that-are-digitally-signed)
+* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
+* [How to open an Excel document that is already open in MS-Excel?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-open-an-excel-document-that-is-already-open-in-msexcel)
\ No newline at end of file
diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md
index 31a8badbf5..ecdbe0d08e 100644
--- a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md
+++ b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md
@@ -20,6 +20,6 @@ Hence, we have used PNG format as default for exporting the images into PDF. If
## See Also
-* [How to export quality image?](https://help.syncfusion.com/file-formats/xlsio/excel-to-pdf-converter-settings#export-quality-image)
-* [How to convert Worksheet to Image?](https://help.syncfusion.com/file-formats/xlsio/worksheet-to-image-conversion)
-* [How to convert Chart to Image?](https://help.syncfusion.com/file-formats/xlsio/chart-to-image-conversion)
+* [How to export quality image?](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-pdf/net/excel-to-pdf-converter-settings#export-quality-image)
+* [How to convert Worksheet to Image?](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-image/net/worksheet-to-image-conversion)
+* [How to convert Chart to Image?](https://help.syncfusion.com/document-processing/excel/conversions/chart-to-image/net/chart-to-image-conversion)
diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md
index f7a717cf49..6ce9fe9dee 100644
--- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md
+++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md
@@ -1425,4 +1425,4 @@ pdfDocument.Close()
{% endtabs %}
-You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Apply-Matte-to-Transparent-Images).
\ No newline at end of file
+You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Apply-Matte-to-Transparent-Images).