The function operates on numeric values passed as arguments during its call; it does not use SASHELP, external, or internally created data in this script for its main operation.
1 Code Block
FUNCTION
Explanation : This block defines the SAS function 'F1'. It takes a numeric parameter 'n', calculates 'n + 1', and returns this result. User-defined SAS functions can be integrated into DATA steps or procedures to perform custom calculations.
Copied!
function F1(n);
return (n+1);
endsub;
1
function F1(n);
2
return (n+1);
3
endsub;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. WeAreCAS is an independent community site and is not affiliated with SAS Institute Inc.
This site uses technical and analytical cookies to improve your experience.
Read more.