I found when you set the cell style is Percent then closedXml can't get the value.
e.g. To input the value like 12 in to the cell A1 and then display 12%
I try get the value in A1 like this.
Is an issue? Thanks.
e.g. To input the value like 12 in to the cell A1 and then display 12%
I try get the value in A1 like this.
ClosedXML.Excel.XLWorkbook wb = new ClosedXML.Excel.XLWorkbook(new FileStream(@"New Microsoft Excel Test.xlsx", FileMode.OpenOrCreate));
var testCell = wb.Worksheet("Sheet1").Cell("A1");
Then I try to get the testCell value it will throw the format exception and the valuecached is null.Is an issue? Thanks.