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 is the order of evaluation of the following operators + - * / ** () ???
What are the advantages of using sas?
In the flow of DATA step processing, what is the first action in a typical DATA Step?
what are sas bi dashboard components? : Sas-bi
In sas admin differentiate between roles and capabilities? : sas-grid-administration
Enlist the syntax rules followed in sas statements.
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
What are symget and symput? : sas-macro
what is SAS/Graph?
what is sas metadata repository? : Sas-bi
what is intially documentation in sas?
Difference Between Scan and Substr