我用Spread 6.0 for asp.net 打开一个带公式的EXCEL文件,输入的新数据的时候,公式那列不自动计算。如何能够自动计算?
代码如下:
string path = HttpContext.Current.Server.MapPath(Request.ApplicationPath);
string filePath = path + "Book1.xls";
FpSpread1.OpenExcel(filePath);
上图的EXCEL文件是在EXCEL中制作的,在C列输入分数,E列等于C列*D列。
我参考Spread6.0带的例子
http://localhost/GrapeCity_WebSpreadSamples_V603505/VB/spWebProductTour/calc.aspx
该例子中的表格都是后台代码添加的,同时带有公式,当修改数据时,公式是自动计算的。 |
|