BookmarkSubscribeRSS Feed
Chunbo
Calcite | Level 5

Typically the keyword CALCULATED is required any time a variable is calculated and used within the same query within a RPOC SQL step.  However, lately I found that it also works WITHOUT the keyword in a GROUP BY clause.

In the codes below, typically we should use GROUP BY Calculated XID;  but it did work without the keyword.  Any idea?  I guess it's a SAS version issue, where in the later versions the rules for GROUP BY is loosened up? 

 

data block;
  do block = 4 to 16 by 4;
      do i=1 to 3;
      x=block+i;
       output;
      end;
  end;
  drop i;
run;

proc sql;
    create table test as select block, x,
    x**2 as xsq,
    mean(calculated xsq) as meanXsq,
    calculated xsq**.5 as XID
from block
group by XID;
quit;

2 REPLIES 2
Tom
Super User Tom
Super User

The GROUP BY does not default to using variables that come from one of the input tables.  In fact usually you will want to use one of the variables that is being included in the output.

 

However you might need to use CALCULATED if there is confusion between one of the input variable and on of the calculated variables.

 

Chunbo
Calcite | Level 5
That makes sense. Thanks, Tom!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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