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;

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 5983 views
  • 3 likes
  • 5 in conversation