Hi! I am new to SAS, to please forgive if this is a rather elementary question. I have a data set that has lets say 15 observations. I am able to count them using _N_ as well as proc sql count function. I want to declare an array of the size N where N would be equal to the number of observations... proc sql; select count (col1) ; from dataset1; quit; array (N) $; Thank you in advance for all you help!
... View more