diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-prevent-parse-exception-from-undefined-named-ranges.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-prevent-parse-exception-from-undefined-named-ranges.md new file mode 100644 index 000000000..ed317920e --- /dev/null +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-prevent-parse-exception-from-undefined-named-ranges.md @@ -0,0 +1,27 @@ +--- +title: Prevent ParseException when updating formulas | Syncfusion +description: This page explains how to prevent ParseException when modifying formulas with undefined named ranges in Syncfusion .NET Excel library (XlsIO). +platform: document-processing +control: XlsIO +documentation: UG +--- + +# How to prevent ParseException from undefined named ranges? + +To prevent a ParseException when modifying formulas that reference undefined named ranges, set the ThrowOnUnknownNames property to **false** before updating the formula. + +{% tabs %} +{% highlight c# tabtitle="C# [Cross-platform]" %} +workbook.ThrowOnUnknownNames = false; +{% endhighlight %} + +{% highlight c# tabtitle="C# [Windows-specific]" %} +workbook.ThrowOnUnknownNames = false; +{% endhighlight %} + +{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} +workbook.ThrowOnUnknownNames = False +{% endhighlight %} +{% endtabs %} + +This ensures that formulas with undefined named ranges won't trigger errors during assignment or modification. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-character-limit-for-an-Excel-cell.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-character-limit-for-an-Excel-cell.md new file mode 100644 index 000000000..98615dfa4 --- /dev/null +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-character-limit-for-an-Excel-cell.md @@ -0,0 +1,11 @@ +--- +title: Maximum characters allowed in Excel cell | Syncfusion +description: Learn about the maximum number of characters supported in a single Excel cell using Syncfusion .NET Excel library (XlsIO). +platform: document-processing +control: XlsIO +documentation: UG +--- + +# What is the maximum character limit for an Excel cell? + +A single Excel cell can contain up to **32,767 characters**. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-number-of-hyperlinks-in-an-Excel-worksheet.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-number-of-hyperlinks-in-an-Excel-worksheet.md new file mode 100644 index 000000000..d82b8531c --- /dev/null +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-number-of-hyperlinks-in-an-Excel-worksheet.md @@ -0,0 +1,11 @@ +--- +title: Maximum number of hyperlinks in Excel worksheet | Syncfusion +description: Learn about the maximum number of hyperlinks supported in an Excel worksheet using Syncfusion .NET Excel library (XlsIO). +platform: document-processing +control: XlsIO +documentation: UG +--- + +# What is the maximum number of hyperlinks in an Excel worksheet? + +An Excel worksheet can contain up to **65,530 hyperlinks**. This limit ensures compatibility with Excel's internal structure and helps maintain performance when working with large datasets. \ No newline at end of file