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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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