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
How would you include common or reuse to be processed along with your statements?
What do you know about symput and symget?
Explain how you can debug and test your SAS program?
What do you know about sas and what we do? : sas-grid-administration
What is substr function?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
Approximately what date is represented by the SAS date value of 730?
What is the SAS data set?
Describe the function and untility of the most difficult SAS macro that you have written.
What do the put and input function do?
which date functions advances a date time or date/time value by a given interval? : Sas programming
name some data transformation used in sas di? : Sas-di
How to include or exclude specific variables in a data set?
describe how to adjust the performance of data integrator? : Sas-di
how to do user inputs and command line arguments in sas?