Specify a label and format for the Salary variable. The LABEL statement substitutes the specific label for the variable in the report. In this case, "Salary in US Dollars" is substituted for the variable Salary for this print job only. The FORMAT statement associates the USCurrency. format with the variable name Salary for the duration of this procedure step.


   label salary='Salary in U.S. Dollars';
   format salary uscurrency.;