BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
CathyVI
Pyrite | Level 9

Hi,

I have always encounter this slight issue when coding. I want to drop or keep a variable and also use the compress statement. How do I code this correctly?.

For example:

data monthly_06 (drop=hospice) (compress=yes);
set a.monthly_06;

run;

/****Error log page*****/

73 Data monthly_06 (drop= hospice) (compress=yes);
                                                           _
                                                          22
                                                          76
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, /, ;, _DATA_, _LAST_, _NULL_.
ERROR 76-322: Syntax error, statement will be ignored.
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
data want(drop=make origin compress=yes);
 set sashelp.cars;
 run;

@CathyVI wrote:

Hi,

I have always encounter this slight issue when coding. I want to drop or keep a variable and also use the compress statement. How do I code this correctly?.

For example:

data monthly_06 (drop=hospice) (compress=yes);
set a.monthly_06;

run;

/****Error log page*****/

73 Data monthly_06 (drop= hospice) (compress=yes);
                                                           _
                                                          22
                                                          76
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, /, ;, _DATA_, _LAST_, _NULL_.
ERROR 76-322: Syntax error, statement will be ignored.

Remove the additional parenthesis. 

View solution in original post

1 REPLY 1
Reeza
Super User
data want(drop=make origin compress=yes);
 set sashelp.cars;
 run;

@CathyVI wrote:

Hi,

I have always encounter this slight issue when coding. I want to drop or keep a variable and also use the compress statement. How do I code this correctly?.

For example:

data monthly_06 (drop=hospice) (compress=yes);
set a.monthly_06;

run;

/****Error log page*****/

73 Data monthly_06 (drop= hospice) (compress=yes);
                                                           _
                                                          22
                                                          76
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, /, ;, _DATA_, _LAST_, _NULL_.
ERROR 76-322: Syntax error, statement will be ignored.

Remove the additional parenthesis. 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 370 views
  • 1 like
  • 2 in conversation