How can i modify excel dataset column value(eg. age) with mean of that column value? please suggest
Please clarify your question. Have you imported an Excel sheet into a SAS dataset and want to calculate the mean age across all rows? Or are you trying to do something else?
Assigning the mean age to another variable is preferable:
proc sql; create table want as select * ,mean(age) as mean_age from have ; quit;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.