1.先从数据口中读出标的内容放到dataset中,设为ds 2.dim i as integer for i=0 to ds.tables(0).rows.count-1 if i>0 then if ds.tables(0).rows(i).item("方式")=“入库” ds.tables(0).rows(i).item("剩余")=ds.tables(0).rows(i-1).item("剩余")+ds.tables(0).rows(i).item(“数量”) end if if ds.tables(0).rows(i).item("方式")=“出库” ds.tables(0).rows(i).item("剩余")=ds.tables(0).rows(i-1).item("剩余")-ds.tables(0).rows(i).item(“数量”) end if