With DataTables("库存状况表_Table1").DataCols '用表达式列计算库存数据 .Add("可用库存",Gettype(Integer), "IsNull([期初数量],0) + ISNULL([入库数量],0) - ISNULL([出库数量],0)") .Add("库存占用率",Gettype(Double),"可用库存/sum(可用库存)")End With
DataTables("库存状况表_Table1").Datacols("库存占用率").SetFormat("00.00%")
这样试试.