如何访问另一列中的交叉表公式字段?我有两个公式字段的会费和总计报告:
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
如何访问每行记录的第二个公式中的到期字段?