本文介绍了根据数据表中的上一行计算行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hi
i有一个包含3列的数据表:债务,信用,保留,类型



现在所有单元格都填充如下:

hii have a datatable with 3 columns : debt , credit , remain, type

all cells now are filled like below :

debt/credit/remain/type
100   0     100    debt
200   0     300    debt
0     500   500    credit
0     200   200    credit
50    0     50     debt
150   0     150    debt
50    0     50     debt
5000  0     5000   debt





现在我想计算下面的剩余列:



now i want to calculate remain column like below :

debt/credit/remain/type
100   0     100    debt
200   0     300    debt
0     500   200    credit
0     200   400    credit
50    0     350    credit
150   0     200    credit
50    0     150    credit
5000  0     4950   debt





非常感谢



thanks a lot

推荐答案


这篇关于根据数据表中的上一行计算行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 00:15