Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
395
Summary data presentation
posted

Hi,

I have some question about possible implementation of some features presented in following grid

name date price calculation
Item 1 1.1.2010 3 3
Item 2 1.1.2010 2 5
Item 3 1.1.2010 4 9
Item 4 1.1.2010 1 10
Total for: 1.1.2010 10  
Item 5 6.3.2010 11 21
Item 6 6.3.2010 3 24
Total for: 6.3.2010 14  
       
  Total 24  
  Merge cells 7
 

calculation on line x = sum(price[0] : price[x]) (for Item2 calculation = line2.price + line3.price = 3 + 2; Item3.calculation = 3 + 2 + 4, ...)

1. Is it possible to have more summary rows? I need to have one summarry row based on data grouped by date and other summary row (or couple of rows) for entire grid. Both summaries will look differently. So far I was able to display only one at the time.

2. Is it possible to merge cells (column spanning and row spanning) in summary area?

3. Is there some functionality fo summing values in the grid so far present (calculation column)? On line 3 I need to summarize data from price column 1 - 3, on line 4 summarize for 1 - 4 etc. The trick is taht calculation column is based on displayed data. When I sort items in the grid, data in calculation column will change as well. So ex. for Item 2 there is calculation=5, but after som sorting it can change f.e. calculation=9

Thanks for having a look.