IEaxGrid.Activate8020

Syntax

Activate8020(Value: Boolean);

Parameters

Value. The attribute of enablingactivating the 80/20 analysis.

Description

The Activate8020 method enables and disables the 80/20 analysis.

Comments

Available Values of the activation attribute:

Example

Executing the example requires an express report with the EXPRESS_REPORT identifier.

Add links to Metabase and Express system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Expr: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("EXPRESS_REPORT").Edit;
    Expr := MObj As IEaxAnalyzer;
    Grid := Expr.Grid;
    Grid.Activate8020(True);
    MObj.Save;
End Sub UserProc;

After executing the example for the first column with the data of the express report the 80/20 analysis is activated. By default the First 80% option is activated.

See also:

IEaxGrid | 80/20 Analysis