diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 6fd33efca..103e3b977 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -6091,6 +6091,12 @@
How to perform a clean installation of a NuGet package from a local source?
+
+ How to get the column color when column cells have different colors?
+
+
+ How to preserve leading zeros when importing DataTable to Excel?
+
diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-the-column-color.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-the-column-color.md
new file mode 100644
index 000000000..eab747f10
--- /dev/null
+++ b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-the-column-color.md
@@ -0,0 +1,58 @@
+---
+title: How to get the column color | Syncfusion.
+description: This page explains how to get the styled column color when column cells have different colors in an Excel document using Syncfusion .NET Excel library (XlsIO).
+platform: document-processing
+control: XlsIO
+documentation: UG
+---
+
+# How to get the column color when column cells have different colors?
+
+According to Microsoft Excel behavior, when a column's cells have different fill colors, the column color property returns an empty value. Syncfusion XlsIO mirrors this behavior, as Excel doesn't set a unified column color in such cases. This can lead to issues when trying to retrieve color using column cell style properties.
+The following code example illustrates how to get the column color when column cells have different colors in an Excel document.
+
+{% tabs %}
+{% highlight c# tabtitle="C# [Cross-platform]" %}
+using (ExcelEngine excelEngine = new ExcelEngine())
+{
+ IApplication application = excelEngine.Excel;
+ application.DefaultVersion = ExcelVersion.Xlsx;
+
+ IWorkbook workbook = application.Workbooks.Open("Column styles.xlsx", ExcelOpenType.Automatic);
+
+ IWorksheet worksheet = workbook.Worksheets[0];
+
+ ExtendedFormatImpl format = (workbook as WorkbookImpl).InnerExtFormats[(worksheet["A1"] as RangeImpl).ExtendedFormatIndex];
+ Color color = format.Color;
+}
+{% endhighlight %}
+
+{% highlight c# tabtitle="C# [Windows-specific]" %}
+using (ExcelEngine excelEngine = new ExcelEngine())
+{
+ IApplication application = excelEngine.Excel;
+ application.DefaultVersion = ExcelVersion.Xlsx;
+
+ IWorkbook workbook = application.Workbooks.Open("Column styles.xlsx", ExcelOpenType.Automatic);
+
+ IWorksheet worksheet = workbook.Worksheets[0];
+
+ ExtendedFormatImpl format = (workbook as WorkbookImpl).InnerExtFormats[(worksheet["A1"] as RangeImpl).ExtendedFormatIndex];
+ Color color = format.Color;
+}
+{% endhighlight %}
+
+{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
+Using excelEngine As New ExcelEngine()
+ Dim application As IApplication = excelEngine.Excel
+ application.DefaultVersion = ExcelVersion.Xlsx
+
+ Dim workbook As IWorkbook = application.Workbooks.Open("Column styles.xlsx", ExcelOpenType.Automatic)
+ Dim worksheet As IWorksheet = workbook.Worksheets(0)
+
+ Dim format As ExtendedFormatImpl = DirectCast(workbook, WorkbookImpl).InnerExtFormats(DirectCast(worksheet("A1"), RangeImpl).ExtendedFormatIndex)
+ Dim color As Color = format.Color
+
+End Using
+{% endhighlight %}
+{% endtabs %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-preserve-leading-zeros-when-importing-data-to-excel.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-preserve-leading-zeros-when-importing-data-to-excel.md
new file mode 100644
index 000000000..788d85bd1
--- /dev/null
+++ b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-preserve-leading-zeros-when-importing-data-to-excel.md
@@ -0,0 +1,134 @@
+---
+title: Preserve leading zeros when importing data to Excel | Syncfusion
+description: Discover how to keep leading zeros in text when importing a DataTable to Excel using Syncfusion .NET Excel library.
+platform: document-processing
+control: XlsIO
+documentation: UG
+---
+
+# How to preserve leading zeros when importing DataTable to Excel?
+
+Excel often treats numeric-looking text as numbers, removing leading zeros. The same behavior is followed when importing DataTable to Excel by the Syncfusion .NET Excel (XlsIO) library. The leading zeros can be preserved by providing the parameter "PreserveDataTypes" in the ImportDataTable method as "True" when importing the data.
+
+The following code snippet shows how to use the PreserveDataTypes option in XlsIO.
+
+{% tabs %}
+{% highlight c# tabtitle="C# [Cross-platform]" %}
+
+using (ExcelEngine excelEngine = new ExcelEngine())
+{
+ IApplication application = excelEngine.Excel;
+ application.DefaultVersion = ExcelVersion.Xlsx;
+ IWorkbook workbook = application.Workbooks.Create(1);
+ IWorksheet worksheet = workbook.Worksheets[0];
+
+ #region Import from Data Table
+ //Initialize the DataTable
+ DataTable table = SampleDataTable();
+ //Set the final parameter (preserveTypes) to true to preserve the data types.
+ worksheet.ImportDataTable(table, true, 1, 1, true);
+ #endregion
+
+ #region Save
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/ImportDataTable.xlsx"));
+ #endregion
+}
+static DataTable SampleDataTable()
+{
+ //Create a DataTable with four columns
+ DataTable table = new DataTable();
+ table.Columns.Add("Dosage", typeof(int));
+ table.Columns.Add("Drug", typeof(string));
+ table.Columns.Add("Patient", typeof(string));
+ table.Columns.Add("Date", typeof(DateTime));
+
+ //Add five DataRows
+ table.Rows.Add(25, "032132", "David", DateTime.Now);
+ table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
+ table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
+ table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
+ table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);
+
+ return table;
+}
+
+{% endhighlight %}
+
+{% highlight c# tabtitle="C# [Windows-specific]" %}
+
+using (ExcelEngine excelEngine = new ExcelEngine())
+{
+ IApplication application = excelEngine.Excel;
+ application.DefaultVersion = ExcelVersion.Excel2016;
+ IWorkbook workbook = application.Workbooks.Create(1);
+ IWorksheet worksheet = workbook.Worksheets[0];
+
+ //Initialize the DataTable
+ DataTable table = SampleDataTable();
+
+ //Set the final parameter (preserveTypes) to true to preserve the data types.
+ worksheet.ImportDataTable(table, true, 1, 1, true);
+
+ workbook.SaveAs("ImportFromDT.xlsx");
+}
+private static DataTable SampleDataTable()
+{
+ //Create a DataTable with four columns
+ DataTable table = new DataTable();
+ table.Columns.Add("Dosage", typeof(int));
+ table.Columns.Add("Drug", typeof(string));
+ table.Columns.Add("Patient", typeof(string));
+ table.Columns.Add("Date", typeof(DateTime));
+
+ //Add five DataRows
+ table.Rows.Add(25, "032132", "David", DateTime.Now);
+ table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
+ table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
+ table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
+ table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);
+
+ return table;
+}
+
+{% endhighlight %}
+
+{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
+
+Using excelEngine As ExcelEngine = New ExcelEngine()
+ Dim application As IApplication = excelEngine.Excel
+ application.DefaultVersion = ExcelVersion.Excel2016
+ Dim workbook As IWorkbook = application.Workbooks.Create(1)
+ Dim worksheet As IWorksheet = workbook.Worksheets(0)
+
+ 'Initialize the DataTable
+ Dim table As DataTable = sampleDataTable()
+ 'Set the final parameter (preserveTypes) to true to preserve the data types.
+ worksheet.ImportDataTable(table, True, 1, 1, True)
+
+ workbook.SaveAs("ImportFromDT.xlsx")
+End Using
+Private Function SampleDataTable() As DataTable
+ ' Create a DataTable with four columns
+ Dim table As New DataTable()
+ table.Columns.Add("Dosage", GetType(Integer))
+ table.Columns.Add("Drug", GetType(String))
+ table.Columns.Add("Patient", GetType(String))
+ table.Columns.Add("Date", GetType(Date))
+
+ ' Add five DataRows
+ table.Rows.Add(25, "032132", "David", DateTime.Now)
+ table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now)
+ table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now)
+ table.Rows.Add(21, "Combivent", "Janet", DateTime.Now)
+ table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now)
+ Return table
+End Function
+
+{% endhighlight %}
+{% endtabs %}
+
+## See Also
+
+* [How to import data table with its data type using template markers?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-import-data-table-with-its-data-type-using-template-markers)
+* [Import to Excel Document](https://help.syncfusion.com/document-processing/excel/excel-library/net/import-export/import-to-excel)
\ No newline at end of file