RE: How to show subtotals in a list box

2018-08-20 Thread lists via 4D_Tech
Hi Dani, Take a look at hierarchical list box. The idea is to insert a line at the end of each break and present the subtotal there. You could also present the subtotal in the top line, allowing the user to suppress or show the details under that group. Cheers, Lahav -Original

Re: How to show subtotals in a list box

2018-08-20 Thread Keith Culotta via 4D_Tech
Starting at the top and working down an array based listbox: A column could be "manually" subtotaled by inserting rows at the break points of a sorted column. These rows would need a marker in an invisible column so they could be deleted in the next sort or selection change. Or add a numeric

Re: How to show subtotals in a list box

2018-08-20 Thread Kirk Brooks via 4D_Tech
Dani, I am interested to know how you resolve this one. On Mon, Aug 20, 2018 at 2:05 PM Dani Beaubien via 4D_Tech < 4d_tech@lists.4d.com> wrote: > My situation is that I have a list box that has 1 level of break rows and > I have been asked to add a subtotal of the rows within each break level.