You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error found in function:
internal SharedStrings(ZipArchive archive)
After load string sequence is worng if Excel file contain vertically merged cells.
I make some changes like this:
foreach (XElement si in document.Descendants().Where(d => d.Name.LocalName == "si") )
{
String s;
s = "";
foreach (String X in si.Descendants().Where(d => d.Name.LocalName == "t"))
{
if (s != "") s += " ";
s = s + X;
}
int i = AddString(s);
System.Diagnostics.Debug.Print(s + ":" + i.ToString());
}
The text was updated successfully, but these errors were encountered:
test.xlsx
error found in function:
internal SharedStrings(ZipArchive archive)
After load string sequence is worng if Excel file contain vertically merged cells.
I make some changes like this:
foreach (XElement si in document.Descendants().Where(d => d.Name.LocalName == "si") )
{
String s;
s = "";
foreach (String X in si.Descendants().Where(d => d.Name.LocalName == "t"))
{
if (s != "") s += " ";
s = s + X;
}
int i = AddString(s);
System.Diagnostics.Debug.Print(s + ":" + i.ToString());
}
The text was updated successfully, but these errors were encountered: