金額をユーロからスロヴェニアトラーに換算します。
出力フィールドの幅を指定します。
数値の小数点以下の桁数を指定します。
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
----+----1----2
1
put amount eurtosit8.;
put amount eurtosit14.2;
191
191.00
1234.56
235801
235800.96
12345
2357895
2357895.00