BookmarkSubscribeRSS Feed
Nishi_Bodake
Calcite | Level 5

How can i modify excel dataset column value(eg. age) with mean of that column value? please suggest

3 REPLIES 3
SASKiwi
PROC Star

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?

Nishi_Bodake
Calcite | Level 5
Yes..I want to calculate mean of age and replace it with some of the value
SASKiwi
PROC Star

Assigning the mean age to another variable is preferable:

proc sql;
  create table want as
  select  *
         ,mean(age) as mean_age
  from have
  ;
quit;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 3 replies
  • 528 views
  • 1 like
  • 2 in conversation