Hello support,
Could you please help to check is this known issue?
1. I use .NET framework 4.8.0.
2. Spire.XLS version: 12.7.0.0
3. My function: export data from db to excel, and for one column, add hyperlink.
Issues: When export data rows larger than 60000 rows, after open excel, it show hyperlink removed because of broken. But when there are 20000 rows, hyperlink works well.
I use this code to add hyperlink:
HyperLink UrlLink = "sheet.HyperLinks.Add(sheet.Range["I" + (i + 2)])";
UrlLink.TextToDisplay = "xxx";
UrlLink.Type = HyperLinkType.Url;
UrlLink.Address = "xxx";