|
|
|
|
<Table>.FormulaDeleteAll (Function) In french: <Table>.FormuleSupprimeTout TABLE_MyTable.FormulaDeleteAll() nRow is int nRow = TABLE_MyTable.COL_Num.FormulaAdd("Positive mean", ProcInit, ProcAdd, ProcEnd) // Change the background color of the row for custom calculation COL_Num[nRow].BackgroundColor = LightRed nCounter is int INTERNAL PROCEDURE ProcInit() nCounter = 0 RESULT 0 END INTERNAL PROCEDURE ProcAdd(Accumulator, ColValue) // Ignores the negative numbers or NULL IF (ColValue <= 0) RESULT Accumulator nCounter++ RESULT Accumulator + ColValue END INTERNAL PROCEDURE ProcEnd(Accumulator) IF nCounter = 0 THEN RESULT 0 // Calculate the mean RESULT Accumulator/nCounter END
Syntax
<Table control>.FormulaDeleteAll()
<Table control>: Control name Name of the control to be used. This control can correspond to: - a Table control.
- a TreeView Table control.
Remarks The preset calculations (total, mean, count, min, max) are not affected.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|