I would like each record in MyFields.MyExpression filed to contain and expression, which would be calculated on the report at runtime. I am not sure how to do evaluate it at runtime.
Example:
1) First record
MyFields.MyExpression = "tblMain.Calc1*tblMain2.Calc2"
1) Second record
MyFields.MyExpression = "tblMain.Calc2*tblMain2.Calc3"
How would I display THE ACTUAL CALCULATED VALUE of MyFields.MyExpression on the report?
The idea is that the field MyExpression is calculated based on fields from other tables...
Example:
1) First record
MyFields.MyExpression = "tblMain.Calc1*tblMain2.Calc2"
1) Second record
MyFields.MyExpression = "tblMain.Calc2*tblMain2.Calc3"
How would I display THE ACTUAL CALCULATED VALUE of MyFields.MyExpression on the report?
The idea is that the field MyExpression is calculated based on fields from other tables...