问题描述
我导出数据到指定模板excel,模板的Excel中有10几个sheet,我前几个sheet都正常,但第5个sheet后就无法往里写数据了。sheet1=hssfworkbook.GetSheet(ksmc);//选中对应科室名称的sheet,写入相应数据//抬头sheet1.GetRow(2).GetCell(6).SetCellValue("实际值"+khrq);for(introw=firstrow;row<=rownum;row++){indexid=GetIndexID(row);dt_row=CommonClass.DTSelect(dt_hzbb,"indexid='"+indexid+"'");//有些指标内科没有if(dt_row==null||dt_row.Rows.Count==0){}else{dr_row=dt_row.Rows[0];sjz=CommonClass.ToDouble(dr_row["sjz"]);sjdf=CommonClass.ToDouble(dr_row["sjdf"]);sheet1.GetRow(row).GetCell(firstcol).SetCellValue(sjz);sheet1.GetRow(row).GetCell(firstcol+1).SetCellValue(sjdf);}是nopi不支持吗
解决方案
解决方案二:
程序调式的时候都正常,但是导出来的Excel第5个sheet后无数据
时间: 2024-10-29 18:30:23