@vazmena1 wrote:
Please could you provide the code? I have the same problem. Thanks
Please post a new question, not add on to a several year old one.
Build your code using the query builder and then copy the code to a code node. Then manually add in the calcuations you want.
It follows the format below, in red, with the BMI calculation.
proc sql;
create table WANT as
select age, name, weight, weight/height**2 as BMI
from sashelp.class;
quit;
... View more