BookmarkSubscribeRSS Feed
noobs
Fluorite | Level 6

Hello SAS EG Users,

What is the best way to count number of observations in SAS dataset, when it shows question mark while scrolling from top to bottom in tooltip that generally says "x of y" where y represents total number of observations in dataset.

Proc SQL;

Select count(*)

from WORK.<datasetname>;

quit;

Can above code be used or does it need some modifications? I haven't used PROC SQL in a while Smiley Happy

Thanks,

Dhanashree

2 REPLIES 2
Reeza
Super User

Depends on what you want to do with it.

You can right click a data set, see the properties which includes the number of observations.

Your code above will print to screen.

Also, you should try your code rather than ask if it works...

ChrisHemedinger
Community Manager

The [?] appears when accessing a VIEW or sometimes a DMBS table (via a SAS/ACCESS library) when the row count isn't available.

You can try the PROC SQL step, or perhaps glean some information from the Summary Statistics task, One-Way Frequencies task or Data Set Attributes task.  If you use Summary Statistics or One-Way Frequencies, and if the table is a DBMS table, then SAS will actually push that "counting work" down to the database, which should be more efficient.

Chris

Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 2790 views
  • 0 likes
  • 3 in conversation