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!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2284 views
  • 0 likes
  • 2 in conversation