I am able to set a specific column as FormulaCell type in a GridGroupingControl
gridGroupingControl1.TableDescriptor.Columns["HEADERNAME"].Appearance.RecordFieldCell.CellType = GridCellTypeName.FormulaCell;
But this code does not do anything
gridGroupingControl1.TableDescriptor.Columns["HEADERNAME"].Appearance.RecordFieldCell.CellValue = "=SUM(A0,B0)";
Is there any way to assign a formula to an entire column without using an event handler or iterating through each row?
When I set the DataSource to a DataTable I want to just be able to set some of the columns as Formula columns and the formula is the same for the entire column that refers to other columns.