Hello,
When create following grid:
Code SubCode Description Price
1 1 Hammer 10
1 2 Nail 20
2 1 Screwdriver 10
When i group by code and subcode and i add a summary for price, i will only get summary totals for the subcode level, i will not get a summary total for the code level.
Is it possible to also have a summary total on code level and if so what properties need to be enabled?
Hi,
Maybe I am wrong, but I'm pretty sure the summary will display on every level of grouping by default. If it's not showing up, it might be some setting in your code that's causing that. Although, if there's a way to turn off a summary on a particular level, I'm not aware of it.
Can you post a small sample project that shows this occurring?
Hello Mike,
Yes i can... very simple. I created a new app with just some hardcoded data. I attached it to this post.
You will see that i have group on two fields code1 and code2, i have added a sum for the value field. Notice that when you run the app, there is only one summary per code2 group, there is no summary on code1. The total for example for code1="1" should be equal to 25+45=70. The total for code1 = "2" should be equal to 30 + 20 = 50
Bottom line, i only get the summary displayed on the second field... there is no total visible for the first field i grouped on.
I hope this helps make the problem clear
Peter