Calculated attributes in Reports

2
Hi, i'm using reports in mendix, when i'm trying to use calculated attributes in OQL queries for reports , they are not available, also I noticed that they are not present in database , can I ask why ?
asked
1 answers
0

Calculated attributes are what they say: calculated. They are dynamically calculated based on other data. You can use the same expression in an OQL column.

SELECT FROM CUSTOMER
NAME,
(AMOUNT1+AMOUNT2) AS CALCULATED
answered