请教一下,下面的程序错误在哪里?
data a(replace=yes);
length amount 3;
amount=4;
If Amount=4 then word="FOUR";
If Amount=7 then word="Seven";
Else if word="None!!!";
Amount=7;
run;
proc print data=a;
run;
log窗口提示如下:
NOTE: 数据集 WORK.A 有 0 个观测和 2 个变量。
NOTE: “DATA 语句”所用时间(总处理时间):
      实际时间          0.00 秒
      CPU 时间          0.01 秒