我在 mssql 2k5 中有一列数据类型 money ... colX ...
我想根据 Crystalreport 中的 colY 将这个 colx 显示在两列 col1 和 col2 中:
res = 100.00
col1 col2 col3
10.00 0 90.00
0 1.00 91.00
0 5.00 96.00
50.00 0 46.00
.
.
但我现在得到的是:
res = 100.00
col1 col2 col3
10.00 0 100.00
0 1.00 100.00
0 5.00 100.00
50.00 0 100.00
.
.
以下是我用于 col3 的公式...
dim ob
ob={TABLE.res}
WhileReadingRecords
if {TABLE.colY}="C" then
ob=ob-{TABLE.colX}
formula=ob
else
ob=ob+{TABLE.colX}
formula=ob
end if
如果您有任何解决方案或参考,请回答...