Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MVS 上の SAS でアレイを構築する必要があります
使ってみた
ARRAY MONTHS[12] $3 ('JAN' 'FEB' 'MAR' ... 'DEC');
しかし、それは機能していません
助言がありますか?
テストする MVS 実装がありません。
しかし、MONNAME3 を試してみませんか。フォーマット?
1240 data test; 1241 x=1; 1242 y = put(x,monname3.); 1243 put x= y=; 1244 run; x=1 y=Jan
私はそれを理解して終了しました
ARRAY MONTHS{*} JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC;