Access crosstab formula field in another crosstab column?
Posted
by
Damien Joe
on Stack Overflow
See other posts from Stack Overflow
or by Damien Joe
Published on 2010-12-21T06:49:48Z
Indexed on
2010/12/21
6:54 UTC
Read the original article
Hit count: 558
How to access crosstab formula field in another column? I have report like with Dues & total both formula fields:
Amount Dues(Done by a Formula) Total (Done by a Formula)
------ ------------------------- ---------------------------
500 20 % someAmount
Formula for Dues:
WhileReadingRecords;
numberVar due:={Command.SomeField)/100;
due
Formula for Total:
WhileReadingRecords;
numberVar total:= {Command.Amount} - due;
total
How do I access due field inside the second formula for each row of record?
© Stack Overflow or respective owner