将单元格格式从常规更改为自定义日期时间格式,但我想要Excel格式
我怎样才能实现这一点。目前我正在使用C#的NPOI库
NPOI.SS.UserModel.ICellStyle dateSecondBlackCellStyle = setdateRowStyle(currentWorkBook, false);
dateSecondBlackCellStyle.DataFormat = createHelper.CreateDataFormat().GetFormat("MMM/dd/yyyy");
currentRow.GetCell(columnIndex).CellStyle = dateSecondBlackCellStyle;
currentRow.GetCell(columnIndex).CellStyle.DataFormat = dateBlackCellStyle.DataFormat;
我正在使用此代码在生成报告时设置datecell的dataformat