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
80
UltraGrid - regrouping of rows
posted

After a user groups a column, then chooses columns to display, how can i "regroup" and recalculate accordingly the rows being grouped? something similar to SQL grouping

if you can see in the screenshot, what i want to know is, how to recalculate the rows, (and remove other rows) if my user removes the customer code field distinct to the non-numeric type. (in this view, this is not the only columns, there are 50+ columns, only hidden for this screenshot)

Parents Reply
  • 80
    posted in reply to Mike Saltzman

    hi, you're almost there.. but my concern is about the data being displayed.
    (i just reattached the screenshot),

    in my screenshot is two groups, the one .. 12/30 and the other is 12/31.. but by means of sql query,
    removing the customer code in the grouping statement will result like this

    12/30/2011
    order type | amount | current | 1 month | 2 months
    GA    | 5,400 | 0 | 0 | 0   
    IS    | 11965.1 | 0 | 0 | 0

    12/31/2011
    order type | amount | current | 1 month | 2 months
    IS    | 50,279 | 0 | 0 | 0

    this result is obtained by matter of sql query result..

Children