sas macros

Answer Posted / ravi

Macro is a tool.It is used to customize,reduce and extent
minimum amount of text.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what do the mod and int function do? What do the pad and dim functions do? : Sas programming

585


I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

2240


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1765


explain the function of substr in sas? : Sas-administrator

532


how can you put a "trace" in your program? : Sas programming

548






In proc transpose and data step with arrays which one you pick?

2551


To what type of programms have you used scratch macros?

2106


What are the features of base sas system?

583


what is data governance? : Sas-di

601


What is the length assigned to the target variable by the scan function?

649


what are _numeric_ and _character_ and what do they do? : Sas programming

655


I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry

1298


explain the main difference between the nodup and nodupkey options? : Sas-administrator

655


What is SAS? What are the functions does it performs?

704


What is the order of application for output data set options, input data set options and SAS statements?

1060