使用水晶报告7
ID Value total
001 100 2000
002 300 1000
003 300 1000
......
我想在第二行(第一行+第二行)之后在运行时再添加一行。
预期输出
ID Value total subtotal
001 100 2000 (a)
002 300 1000 (b)
123 400 3000 (total of a & b)
003 300 1000 (c)
......
如何在水晶报告中做到。
任何人都可以给我一个想法或公式帮助
答案 0 :(得分:1)
if recordnumber in [1,2] then 1 else 2;
recordnumber > 2