Page 1 of 1

Summary withouth databand

Posted: Wed Feb 03, 2016 9:36 am
by jimyWeb
Hello,
I need to calculate the sum of a column but not using the DataBand. It is to use that the summation on the first page, while daband is located on page 2.

Thank you very much.

Re: Summary withouth databand

Posted: Wed Feb 03, 2016 12:38 pm
by HighAley
Hello.

You could use Sum function with DataSource as parameter:

Code: Select all

Sum(DataSource1, DataSource1.Column);
Thank you.