INDENT

Shifts the first row names column in column-output order by the specified number of characters.

Note:

Default (No value): Indents columns by 2.

Syntax

{ INDENT [ offset ] }
ParameterDescription

offset

Optional. Number of spaces to indent column 0 from the left boundary of the name column. Values:

  • Positive number (up to 100): Shifts column 0 to the right.

  • Negative number: Shifts column left, but cannot indent to the left of the start of the name column.

  • 0: Returns column to original position.

  • Default (no value): Indents columns by 2.

Notes

Example

In the following example, the first report for Chicago shows the default indentation while the second report for Boston uses the { INDENT 10} command to shift the row names column 10 places to the right.

<PAGE (Market, Accounts, Scenario)
Chicago Sales Actual

<COLUMN (Year)
<ICHILDREN Year

<ROW (Product)
<ICHILDREN Audio
     !

{ INDENT 10 }
Boston Sales Actual

<ICHILDREN Year
<ICHILDREN Audio
     !
         

This example produces the following report:

                         Chicago Sales Actual 
                 Qtr1     Qtr2     Qtr3     Qtr4     Year 
             ======== ======== ======== ======== ======== 
Stereo          2,591    2,476    2,567    3,035   10,669 
Compact_Disc    3,150    3,021    3,032    3,974   13,177 
  Audio         5,741    5,497    5,599    7,009   23,846 

                         Boston Sales Actual 
                 Qtr1     Qtr2     Qtr3     Qtr4     Year 
             ======== ======== ======== ======== ======== 
      Stereo    2,450    2,341    2,377    2,917   10,085 
      Compact_~ 3,290    3,034    3,132    3,571   13,027 
        Audio   5,740    5,375    5,509    6,488   23,112
                
                

See Also