|
|
|
|
|
<Table>.FormulaDeleteAll (Function) In french: <Table>.FormuleSupprimeTout TABLE_MyTable.FormulaDeleteAll()
nRow is int
nRow = TABLE_MyTable.COL_Num.FormulaAdd("Positive mean", ProcInit, ProcAdd, ProcEnd)
COL_Num[nRow].BackgroundColor = LightRed
nCounter is int
INTERNAL PROCEDURE ProcInit()
nCounter = 0
RETURN 0
END
INTERNAL PROCEDURE ProcAdd(Accumulator, ColValue)
IF (ColValue <= 0) RETURN Accumulator
nCounter++
RETURN Accumulator + ColValue
END
INTERNAL PROCEDURE ProcEnd(Accumulator)
IF nCounter = 0 THEN RETURN 0
RETURN 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|