6

私のWebページにはEpplusライブラリによって生成された単純なExcelドキュメントがあります。ただし、Excel関数「小計」を使用すると、次のエラーが発生します。

Excelで読み取り不可能なコンテンツが見つかりました...

コードは次のとおりです。

protected void Page_Load(object sender, EventArgs e)
{
   ExcelPackage pck = new ExcelPackage();
   ExcelWorksheet ws = pck.Workbook.Worksheets.Add("hoja1");

   ws.Cells["A1"].Value = 1;
   ws.Cells["A2"].Value = 2;
   ws.Cells["A3"].Value = 3;
   ws.Cells["A1:A3"].Style.Numberformat.Format = "#,##0";

   ws.Cells["A4"].Formula= "SUBTOTAL(9;A1:A3)";

   Response.Clear();
   Response.AddHeader("content-disposition", 
        string.Format("attachment;filename=\"{0}\"", "Reporte.xlsx"));
   Response.ContentType = 
        "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
   Response.BinaryWrite(pck.GetAsByteArray());
   Response.End();
}

そして詳細なxmlドキュメント:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recoveryLog xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
   <logFileName>error057400_01.xml</logFileName>
   <summary>
      Se han detectado errores en el archivo "C:\xxxxxx\Content.IE5\MAW7NL0X\Reporte.xlsx"
   </summary>
   <removedRecords summary="Lista de registros eliminados:">
      <removedRecord>
          Registros quitados: Fórmula de /xl/worksheets/sheet1.xml parte
      </removedRecord>
</removedRecords></recoveryLog>

注:次の機能を使用するように切り替えると、すべて正常に動作します。小計が機能しないのはなぜですか?

ws.Cells["A4"].Formula= "SUM(A1:A3)";
4

1 に答える 1

19

これが問題かどうかはわかりませんが、「;」を置き換えてみてください とともに "、":

ws.Cells["A4"].Formula= "SUBTOTAL(9,A1:A3)";

幸運を。

于 2013-01-26T03:35:46.113 に答える