Wie kann ich die Summe einer Column in einer Variablen berechnen, die ich dann in anderen Variablen weiterverwenden kann?
How can I calculate the sum of a Column in a variable (not in a textfield). This variable must make further use of variables
calculate the sum of a Column in a variable, not in a textfield
calculate the sum of a Column in a variable, not in a textfield
Hello,
Please use the following expression on this:
MyVariable = Totals.Sum(DataSource,expression);
Here expression can contain a column with necessary condition, e.g.:
(DataSource.DataColumn1 < somevalue)?DataSource.DataColumn2:0
Thank you.
Please use the following expression on this:
MyVariable = Totals.Sum(DataSource,expression);
Here expression can contain a column with necessary condition, e.g.:
(DataSource.DataColumn1 < somevalue)?DataSource.DataColumn2:0
Thank you.