Skip to content

Commit

Permalink
fix formula crash
Browse files Browse the repository at this point in the history
  • Loading branch information
luxuia committed Oct 18, 2019
1 parent b50d399 commit 61c1d2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ExcelMerge/Util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ public static string GetCellValue(ICell cell) {
str = cell.StringCellValue.ToString();
}
else {
str = cell.CellFormula;
str = "(公式)";
//str = cell.CellFormula;
}
break;
case CellType.Numeric:
Expand Down

0 comments on commit 61c1d2d

Please sign in to comment.