BookmarkSubscribeRSS Feed
helper27
Calcite | Level 5

 

Hi, I am trying to get slipper product in first 50 observation and I am using following syntax.However it showing error message

22
ERROR 22-7: Invalid option name (.
 

proc print data=sashelp.shoes (where=(product="Slipper") (obs=50);
run;

 

Kindly help. Thanks in advance!

1 REPLY 1
Reeza
Super User

You have 3 open parenthesis and only 2 closing parenthesis. 

 

proc print data=sashelp.shoes ( where=(product="Slipper") obs=50 ) ;

You don't need extra parentheses around the obs option.


@helper27 wrote:

 

Hi, I am trying to get slipper product in first 50 observation and I am using following syntax.However it showing error message

22
ERROR 22-7: Invalid option name (.
 

proc print data=sashelp.shoes where=(product="Slipper") (obs=50) ;
run;

 

Kindly help. Thanks in advance!


 

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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
  • 1 reply
  • 560 views
  • 0 likes
  • 2 in conversation