EURTOSITw.d Format

Converts an amount from euros to Slovenian tolars.
Category: Currency Conversion
Alignment: right

Syntax

EURTOSITw.d

Syntax Description

w
specifies the width of the output field.
Default:6
d
specifies the number of digits to the right of the decimal point in the numeric value.

Details

The EURTOSITw.d format converts an amount in euros to an amount in Slovenian tolars. The conversion rate is a changeable rate that is incorporated into the EURTOSITw.d format and the EUROCURR function. For more information about European currency conversion and currency conversion rate tables, see Currency Representation.
Note: Slovenia's currency is the Euro. The information for EURTOSIT is provided for user's historical data.

Example

The following table shows input values in euros, SAS statements, and the conversion results in Slovenian tolars.
data _null_; 
   input amount;    
   put amount eurtosit8.;
   put amount eurtosit14.2;
   datalines; 
1  
1234.56  
12345 
;
run;
SAS log:
152     put amount eurtosit8.;
153     put amount eurtosit14.2;
154     datalines;
     191
        191.00
  235801
     235800.96
 2357895
    2357895.00
Amounts
Statements
Results
 
 
----+----1----2
1
put amount eurtosit8.;
put amount eurtosit14.2;
     191
        191.00
1234.56
put amount eurtosit8.;
put amount eurtosit14.2; 
  235801
     235800.96
12345
put amount eurtosit8.;
put amount eurtosit14.2;
 2357895
    2357895.00