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.
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.