第1引数に等しい数値を検索し、最初に一致した値のインデックスを返します。
カテゴリ: | 検索 |
data _null_; array dates[*] Columbus Hastings Nicea US_Independence missing Magna_Carta Gutenberg (1492 1066 325 1776 . 1215 1450); x0=whichn(., of dates[*]); x1=whichn(1492, of dates[*]); x2=whichn(1066, of dates[*]); x3=whichn(1450, of dates[*]); x4=whichn(1000, of dates[*]); put x0= / x1= / x2= / x3= / x4=; run;
x0=. x1=1 x2=2 x3=7 x4=0