EURFRNLGw.d Format

Converts an amount from Dutch guilders to euros.
Category: Currency Conversion
Alignment: right

Syntax

EURFRNLGw.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 EURFRNLGw.d format converts an amount from Dutch guilders to an amount in euros and produces a formatted euro value. The conversion rate is a fixed rate that is incorporated into the EURFRNLGw.d format and the EUROCURR function. For more information about European currency conversion and currency conversion rate tables, see Currency Representation.

Example

The following table shows input values in Dutch guilders, SAS statements, and the conversion results in euros.
data _null_; 
   input amount;    
   put amount eurfrnlg5.;
   put amount eurfrnlg9.2;
   datalines; 
50  
1234.56  
12345 
;
run;
8       put amount eurfrnlg5.;
9       put amount eurfrnlg9.2;
10      datalines;
   E23
    E22,69
 E560
  E560,22
5.602
E5.601,92
Amounts
Statements
Results
 
 
----+----1----2
50
put amount eurfrnlg5.;
put amount eurfrnlg9.2;
  E23
   E22,69
1234.56
put amount eurfrnlg5.;
put amount eurfrnlg9.2; 
 E560
  E560,22
12345
put amount eurfrnlg5.;
put amount eurfrnlg9.2;
5.602
E5.601,92