Someone suggest:
proc sql noprint;
select count(*) into :observations from library.dataset;
quit;
Would anybody tell me what to do next? Thanks.
This creates a macro variable holding the count. You could write it out:
%put &observations;
Or a DATA step could use it:
n_obs = &observations;
When the emoticon replacing your actual code, it's difficult to determine what the exact name of your macro variable is ... &observations, or &n_observations, or something similar.
What is your goal? What do you want to achieve?
get the total number of obs
This creates a macro variable holding the count. You could write it out:
%put &observations;
Or a DATA step could use it:
n_obs = &observations;
When the emoticon replacing your actual code, it's difficult to determine what the exact name of your macro variable is ... &observations, or &n_observations, or something similar.
Try SASHELP.VTABLE or the corresponding dictionary table.
proc sql noprint;
select nobs into :nobs_class TRIMMED
from sashelp.vtable
where libname='SASHELP' and memname='CLASS';
quit;
%put Number of obs = &nobs_class;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.