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!


 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 658 views
  • 0 likes
  • 2 in conversation