Express > Express Assembly Interfaces > IEaxGrid > IEaxGrid.Activate8020
Activate8020(Value: Boolean);
Value. Indicates whether the 80/20 analysis is enabled.
The Activate8020 method enables and disables the 80/20 analysis.
Available values of activation:
True. The 80/20 analysis is enabled.
False. The 80/20 analysis is disabled.
Executing the example requires an express report with the EXPRESS_REPORT identifier.
Add links to the Express and Metabase 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 the 80/20 analysis is enabled for the first column with express report data. The Top 80% option is enabled by default.
See also: