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
2325
different summary row display layouts
posted

I have a grand total that looks like this:

        blah $1,200.00

        bleh $5,250.00

I now need to use group by with summaries... however the summaries are displayed as above.  I would like to keep the grand summaries vertical, but I would like to have the group by rows horizontal so that I have something like this:

  Description    Blah        Bleh

    Fish            500.00    250.00

              sum  500.00    250.00

    Animals       700.00        0.00

              sum  700.00        0.00

Grand Totals:

        blah $1,200.00

        bleh $5,250.00

So I basically want to mix layouts.  Is this possible?