BookmarkSubscribeRSS Feed
ballardw
Super User

@animesh123 wrote:
Thanks @ballardw for explaining, Just a request could you show me some example where we could use _numeric_ function


Proc print data=sashelp.class;
   var _numeric_;
run;

In a data step you could do, not that this makes logical sense in most cases (adding age, height and weight doesn't mean much first as each uses different units):

data junk;   
    set sashelp.class;
    newvar = sum( of _numeric_);
run;

 

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 16. 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
  • 15 replies
  • 2348 views
  • 3 likes
  • 5 in conversation