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


Please Help Members By Posting Answers For Below Questions

How would you include common or reuse to be processed along with your statements?

1998


What do you know about symput and symget?

836


Explain how you can debug and test your SAS program?

657


What do you know about sas and what we do? : sas-grid-administration

689


What is substr function?

724






in the flow of data step processing, what is the first action in a typical data step? : Sas programming

740


Approximately what date is represented by the SAS date value of 730?

852


What is the SAS data set?

771


Describe the function and untility of the most difficult SAS macro that you have written.

1680


What do the put and input function do?

680


which date functions advances a date time or date/time value by a given interval? : Sas programming

625


name some data transformation used in sas di? : Sas-di

638


How to include or exclude specific variables in a data set?

764


describe how to adjust the performance of data integrator? : Sas-di

648


how to do user inputs and command line arguments in sas?

2519