HA
haneefm
Syncfusion Team
June 27, 2007 11:22 PM UTC
Hi Richard,
You can handle the QueryCellInfo event and set the cellvalue of the formulcell there .Below are the code snippet
if e.ColIndex == 2 AND e.RowIndex > 0 Then
Dim engine As GridFormulaEngine = CType(e.Style.CellModel, GridFormulaCellModel).Engine
e.Style.CellValue = engine.AdjustReferences("=A1 * 10", e.RowIndex -1 , 0)
EndIf
Best regards,
Haneef