How would you determine how far down on a page you have
printed in order to print out footnotes?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sankar
use footnote statement
footnote1'statement';
footnote1'statement';
.
.
.
.
footnote10'statement';
max use 10 footnotes only
Is This Answer Correct ? | 0 Yes | 1 No |
What statement do you code to tell SAS that it is to write to an external file?
Mention the difference between ceil and floor functions in sas?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
What is the function of Stop statement in a SAS Program?
How to specify variables to be processed by the freq procedure?
How would you include common or reuse code to be processed along with your statements?
What is the general format of function in sas? : sas-grid-administration
how can u create zero observation dataset?
which domain is better in sas? clinical trails or banking
Can you execute macro within another macro? : sas-macro
what is sas metadata server? : Sas-di