BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Kolobok
Calcite | Level 5

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!

1 ACCEPTED SOLUTION

Accepted Solutions
CTorres
Quartz | Level 8

To do this you have to create a macro variable and the use it in the data step:

proc sql noprint;
   select Count(*) into :dim
   from sashelp.class;
quit;

%put &dim;

data _null_;
   /* statements.... */

   array my_array(&dim) $;
   /* more statements  ....  */ 

run;

Regards,

View solution in original post

4 REPLIES 4
CTorres
Quartz | Level 8

To do this you have to create a macro variable and the use it in the data step:

proc sql noprint;
   select Count(*) into :dim
   from sashelp.class;
quit;

%put &dim;

data _null_;
   /* statements.... */

   array my_array(&dim) $;
   /* more statements  ....  */ 

run;

Regards,

Kolobok
Calcite | Level 5

Thank you so much for the quick reply! This did the trick!

Haikuo
Onyx | Level 15

Obviously count(*) will be the most accurate approach, but it could take some time if doing it on a huge table. Then you could try to get the number of obs from Meta data instead of actually counting it on the fly:

1)

data _null_;

  call symputx('nobs', nobs);

stop;

set sashelp.class nobs=nobs;

run;

%put &nobs;

2)

proc sql;

  select nobs into :nobs from dictionary.tables where libname='SASHELP' AND MEMNAME='CLASS';QUIT;

%put &nobs;

Haikuo

Kolobok
Calcite | Level 5

Thank you so much for your reply Haikuo! I am just learning SAS and I am very happy I found this board!

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1921 views
  • 3 likes
  • 3 in conversation