I understand that we can have calculated columns in ultragrid. Using the CalcManager can we have a calculated row without adding summary rows???
E.g. Rows 3 and 5 are calculated. I do not want to flip the rows and columns in the grid (the schema is a bit more complicated)
Hi,
You can allow a formula to a grid column (the whole column) or to a summary. You cannot apply a formula to a specific cell, so you cannot do what you want here with UltraCalcmanager formulas.
But what you could do is use add a couple of extra rows into your data source with no values and then populate those values in the InitializeRow event of the grid and perform the calculations yourself in code.