How experienced are you with customized reporting and use
of Data _Null_ features?

Answer Posted / ganesh

This is used for when you dont want any output and u want
to save your time i will not gives u results but the
message can be displayed inthe log.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is metadata? : Sas-bi

602


for what purpose would you use the retain statement? : Sas programming

589


how could you generate test data with no input data? : Sas programming

635


what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming

730


What are common programming errors committed in sas

674






Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

1465


How do dates work in SAS data?

689


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.

1803


What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

730


how do the in= variables improve the capability of a merge? : Sas programming

936


Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?

1470


explain what is data set in sas? : Sas-administrator

529


Differentiate between ceil and floor functions.

658


why is a stop statement needed for the point=option on a set statement? : Sas programming

589


what is SAS OPTIMIZATION?

1817