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



How would you determine how far down on a page you have printed in order to print out footnotes?..

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

How would you determine how far down on a page you have printed in order to print out footnotes?..

Answer / tangyoulei

options pagesize=...;

Is This Answer Correct ?    0 Yes 0 No

How would you determine how far down on a page you have printed in order to print out footnotes?..

Answer / sankar

use footnote statement

footnote1'statement';
footnote1'statement';
.
.
.
.
footnote10'statement';

max use 10 footnotes only

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SAS Interview Questions

What statement do you code to tell SAS that it is to write to an external file?

5 Answers  


Mention the difference between ceil and floor functions in sas?

0 Answers  


This entry was posted in General. Bookmark the permalink. Post a comment or leave

0 Answers   Quintiles,


How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.

2 Answers  


What is the function of Stop statement in a SAS Program?

0 Answers  






How to specify variables to be processed by the freq procedure?

0 Answers  


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

5 Answers   PSCI,


What is the general format of function in sas? : sas-grid-administration

0 Answers  


how can u create zero observation dataset?

11 Answers   CitiGroup,


which domain is better in sas? clinical trails or banking

3 Answers  


Can you execute macro within another macro? : sas-macro

0 Answers  


what is sas metadata server? : Sas-di

0 Answers  


Categories