EURFRSITw.d Format

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

Syntax

EURFRSITw.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 EURFRSITw.d format converts an amount from Slovenian tolars to an amount in euros and produces a formatted euro value. The conversion rate is a changeable rate that is incorporated into the EURFRSITw.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 EURFRSIT is provided for user's historical data.

Example

The following table shows input values in Slovenian tolars, SAS statements, and the conversion results in euros.
data _null_; 
   input amount;    
   put amount eurfrsit5.;
   put amount eurfrsit9.2; 
   datalines; 
200  
20234.56  
202345 
;
run;
   E1
    E1,05
 E106
  E105,94
1.059
E1.059,40
Amounts
Statements
Results
 
 
----+----1----2
200
put amount eurfrsit5.;
put amount eurfrsit9.2;
   E1
    E1,05
20234.56
put amount eurfrsit5.;
put amount eurfrsit9.2; 
 E106
  E105,94
202345
put amount eurfrsit5.;
put amount eurfrsit9.2;
1.059
E1.059,40