I'm working on a report that has Sum fields for 3 columns of data (Land value, Building value and Dwelling value). All 3 are on the group footer.
I need a total for all 3 for each and I'm not finding a way to do it. How does the software handle sums when there are multiple columns?
Summing mutliple columns
Summing mutliple columns
Hello,
You can use expresssion something like this:
Thank you.
You can use expresssion something like this:
Code: Select all
{Sum(MyDataSource.Land + MyDataSource.Building + MyDataSource.Dwelling)}
Summing mutliple columns
Thanks-worked perfect.
Summing mutliple columns
That is very good!