How would you determine how far down on a page you have
printed in order to print out footnotes?
Answer Posted / kiran kumar yarlagadda
How would you determine how far down on a page you have
printed in order to print out footnotes?
we can declare up to 10 footnotes in a single program.
we can use this option either in a datastep or in a proc
step.
ex->using the footnote in a datastep->
data emp;
input ecode ename$ esal;
footnote1 'my data is over';
footnote2 'submit the data';
cards;
. . . . .
.........
.........
.........
.........
.........
.........
footnote10 'the end';
;
run;
proc print;
run;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
what is the use of proc contents and proc print in sas? : Sas-administrator
Explain the purpose of retain statement.
how can you create zero observation dataset? : Sas programming
which date function advances a date, time or datetime value by a given interval? : Sas programming
Mention what is PROC in SAS?
what is proc Index? and what is proc document?
What sas features do you use to check errors and data validation?
Tell e how how dealt with..
Mention some common errors that are usually committed in sas programming.
What does the RUN statement do?
explain about data integrator metadata reports? : Sas-di
explain the function of substr in sas? : Sas-administrator
How will you generate test data with no input data?
Describe the ways in which you can create macro variables?
How to test the debugging in sas?