Sum() functionality
Posted: Mon Feb 11, 2019 8:38 am
Is there a way to Sum specific tablecells? We're trying to build a report
where some cells are editable and other cells automatically calculate the entered
values.
Like User enters a value of 50€ in Table1_Cell23 and in Table1_Cell 24 should be calculated
25% of the entered value, and at the bottom should be a total from Table1_Cell23 up to
Table1_Cell193 (in steps of 10 so Table1_Cell23,Table1_Cell33,Table1_Cell43 etc)
The normal Sum() function does'nt seem to work since nothing happens and if i write
Table1_Cell23.Text I get the error:
The error of compilation is found in the 'report1' report:
'Reports.report1' does not contain a definition for 'Table1_Cell23_Text', and it could not find an extension method 'Table1_Cell23_Text' that accepts a first argument of type 'Reports.report1' (missing a using directive or an assembly reference?).
And if I write {Table1_Cell23.Text + Table1_Cell33.Text ...} the Cell remains Blank
where some cells are editable and other cells automatically calculate the entered
values.
Like User enters a value of 50€ in Table1_Cell23 and in Table1_Cell 24 should be calculated
25% of the entered value, and at the bottom should be a total from Table1_Cell23 up to
Table1_Cell193 (in steps of 10 so Table1_Cell23,Table1_Cell33,Table1_Cell43 etc)
The normal Sum() function does'nt seem to work since nothing happens and if i write
Table1_Cell23.Text I get the error:
The error of compilation is found in the 'report1' report:
'Reports.report1' does not contain a definition for 'Table1_Cell23_Text', and it could not find an extension method 'Table1_Cell23_Text' that accepts a first argument of type 'Reports.report1' (missing a using directive or an assembly reference?).
And if I write {Table1_Cell23.Text + Table1_Cell33.Text ...} the Cell remains Blank