BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Mur
Calcite | Level 5 Mur
Calcite | Level 5

Hi All,

I am running into this warning message with proc freq.  I am not sure what's causing this warning message.  Below is the code and the warning message.  Any help is appreciated.

proc freq noprint data=one;

where ST='';

by STDATE;

table hms5*STDATE/out=xxx5;

run;

WARNING: Variable STDATE already exists on file WORK.XXX5.

NOTE: There were 4390 observations read from the data set WORK.ONE.

      WHERE ST=' ';

NOTE: The data set WORK.XXX5 has 2773 observations and 4 variables.

NOTE: PROCEDURE FREQ used (Total process time):

      real time           0.02 seconds

      cpu time            0.03 seconds

Thanks,

Mur

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Freq wants to put the BY variable and the table variables in the output data set. Since you have STDATE on both the by and table statements it thinks you want it in the data twice but it can only have one.

For the output requested you probably don't need the BY statement at all.

View solution in original post

2 REPLIES 2
ballardw
Super User

Freq wants to put the BY variable and the table variables in the output data set. Since you have STDATE on both the by and table statements it thinks you want it in the data twice but it can only have one.

For the output requested you probably don't need the BY statement at all.

Mur
Calcite | Level 5 Mur
Calcite | Level 5

Thank you!

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