hi ,
what should be the code for this question ?
select Product_ID, Age on Network fields and calculate Average,MIN,MAX age of network ,using PROC SQL ?
Firstly I didn't understand your question completly.
But some how I am managing to giving you ans.:
try this :
Proc sql;
select Product_id, avg(age),max(age),min(age) from X(library).Network group by Product_id;
run;
and Please post your question with more clearity.
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
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.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!