Hi,
Can some body provide me a summary row example
But I got something like this.
How can I avoid that Sum = 0. I want just 0 instead of sum = 0.
Please provide me some suggestions.
Use the DisplayFormat property on the SummarySettings.
SummarySettings summarySettings = band.Summaries.Add(...);summarySettings.DisplayFormat = "{0}";
I need to display two summary fields Total Man Hours and Total LaborCost within the same grid (like the one I showed in figure).
Thanks.
How to put two summary rows like TotalManHours and TotalLaborCost within in the grid??