Right,
but I would like to take advantage of column dependence calculus that
column expression gives.
Ex:
COLUMNS
col_value_a
col_percentage_y
col_value_b
EXPRESSIONS
col_value_b.Expression = "col_value_a * col_percentage_y / 100"
better
col_value_b.Expression = "round(col_value_a * col_percentage_y / 100, 2)"
REMARKS
- I change, col_value_a and automatically have col_value_b calculated.
- I have big pipeline calculation
- I want to made aggregations at run time without made query the database.
- The expressions(like Excel formulas) seem to me a valid solution for de
points I describe above. Maybe not!?
Many thanks.