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
605
Perform operations on summary Rows
posted

i have a grid with Rows summary.

i want to add another summary on the row summry.

i mean i have tow rows and i have row summary which display the sum of that tow rows .

is it possible to multiply the tows summations and display the result in new row summary?

thank you.

  • 469350
    Verified Answer
    Offline posted

    Are you using formulas for your summaries? Or are you using the built-in summary types like Sum or Average?

    If the former, you could create a new summary with a formula that references the keys of the other two summaries. Of course, this means making sure that the two original summaries actually have a Key assigned.

    If the latter, then you could still use a formula for the third summary. Or, you could create a custom summary and assign it an ICustomSummaryCalculator in which you perform the calculation and return whatever value you want.