Hello I have a field that is holding a calculation of another 2 flowfields, the value are calculated correctly inside my page but if the user filter on the field that is making those calculation it doesn't display nothing. can someone help me out pls
0
Answers
You could base the page on your own temp table and fill it on page open.
Then it works.
CALCFIELDS(Field1, Field2);
TemTable.FielResutlt := Field1 - Field2; and add that code to the Open PAge trigger?
Then in Open Page trigger you loop the real tabel at copy alle records/fields to the Rec of the Page, and also do the calculation as above. So you end up with a temp copy with calculated fields.