For what purposes have you used sas macros? : sas-macro
No Answer is Posted For this Question
Be the First to Post Answer
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
How to import the Zip files into SAS? If it is possible in SAS? If it is posible write the code...
What does error:1 mean?
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
What is the length assigned to the target variable by the scan function?
I need level 2 to 5 sas using companies in india
How many versions came upto now in SAS?
How do you debug and test your SAS programs? What can you learn from the SAS log when debugging? How do you test for missing values? How would you create multiple observations from a single observation? What are some good SAS programming practices for processing very large data sets? Briefly describe 5 ways to do a "table lookup" in SAS. Why is SAS considered self-documenting? Are you sensitive to code walk-throughs, peer review, or QC review? What other SAS features do you use for error trapping and data validation? How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
What are the Aggregate functions in SQL ?
how can get the first and last observations in a dataset using Proc SQl?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here