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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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!