This question is locked. New answers and comments are not allowed.
I haven't seen a thread on this is a while, so I wanted to check again and see where the status of this is.
I have a RadGridView control currently that I need to have more functionality on. The grid contains a lot of data (much of it pre-calculated on the DB side before coming into the application). The problem I have however is that a couple of the columns are averages within the data, or use multiple columns to calculate the value using something like "SUM(col1) / SUM(col2)".
I know that you can extend the CustomAggregates and create a new aggregate function, but as far as I can tell, this only works on the column itself being calculated, and cannot pull in the data from another column in the calculation.
This becomes a problem because I cannot perform an AVG() on a column that already contains averages, because then I'm just averaging the average and it is not the same result as calculating based on the other columns. This is also a problem in the case where the calculation that is supposed to display is the result of SUM(col1) / SUM(col2).
Is there any way currently within the RadGridView to perform this calculation at the Footer level and Grouping level?
I have a RadGridView control currently that I need to have more functionality on. The grid contains a lot of data (much of it pre-calculated on the DB side before coming into the application). The problem I have however is that a couple of the columns are averages within the data, or use multiple columns to calculate the value using something like "SUM(col1) / SUM(col2)".
I know that you can extend the CustomAggregates and create a new aggregate function, but as far as I can tell, this only works on the column itself being calculated, and cannot pull in the data from another column in the calculation.
This becomes a problem because I cannot perform an AVG() on a column that already contains averages, because then I'm just averaging the average and it is not the same result as calculating based on the other columns. This is also a problem in the case where the calculation that is supposed to display is the result of SUM(col1) / SUM(col2).
Is there any way currently within the RadGridView to perform this calculation at the Footer level and Grouping level?