能够使用openXML从excel中获取记录
wbPart.SharedStringTablePart.SharedStringTable.Elements<SharedStringItem>().ElementAt(Convert.ToInt32(cellItem.CellValue.Text)).InnerText
和
cellItem.CellValue.Text
但值 r 没有像在 excel 文本中那样显示格式。
例如在 excel 文件文本中:Dec09(cell format 'mmmyy') 但使用 openxml 值为 40156
在 excel 文件文本中:26.7198404785643% 但使用 openxml 值为 0.26719840478564305
我需要与 excel 表相同的值。