IPivot.HasScaledData

Syntax

HasScaledData: Boolean;

Description

The HasScaledData property returns whether measurement units are taken into account on conditional formatting.

Comments

Available values:

Example

Executing the example requires that the repository contains an express report with the EXPRESS identifier.

Add links to the Metabase, Express, Pivot system assemblies.

Sub UserProc;
Var
    Metabase: IMetabase;
    Express: IEaxAnalyzer;
    Pivot: IPivot;
Begin
    Metabase := MetabaseClass.Active;
    Express := Metabase.ItemById("EXPRESS").Bind As IEaxAnalyzer;
    // Get express report table
    Pivot := Express.Pivot;
    If Pivot.HasScaledData = True Then
        Debug.WriteLine("Measurement units are taken into account on conditional formatting");
    Else
        Debug.WriteLine("Measurement units are not taken into account on conditional formatting");
    End If;
End Sub UserProc;

After executing the example the console window displays whether measurement units are taken into account on conditional formatting.

See also:

IPivot