如何在另一列中访问交叉表公式字段?我和Dues&总计两个公式字段:
Amount Dues(Done by a Formula) Total (Done by a Formula)
------ ------------------------- ---------------------------
500 20 % someAmount
会费公式:
WhileReadingRecords;
numberVar due:={Command.SomeField)/100;
due
总计公式:
WhileReadingRecords;
numberVar total:= {Command.Amount} - due;
total
如何在每行记录的第二个公式中访问到期字段?
答案 0 :(得分:1)
只需使用{@FormulaName}
(见下图)
对于简单公式,Crystal语法非常简单。对于示例公式,您不需要声明变量或使用WhileReadingRecords。 (两者都有它们的用途,但对于你的样品配方,它们是不需要的)。再次,请参阅下面的图片作为示例。