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

Code a PROC MEANS that shows both summed and averaged output of the data.

5 Answers  


what is the difference between proc report and proc format?

7 Answers   CTS,


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

0 Answers  


hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?

6 Answers   Accenture,


If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn?t have a value?

6 Answers  






If a variable contains only numbers, can it be a character data type?

0 Answers  


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

0 Answers  


What is the role of unrestrictive users? : sas-grid-administration

0 Answers  


How many missing values are available? When might you use them?

1 Answers   Quintiles,


How to display duplicate observations in data?

1 Answers  


What is _n_?

22 Answers  


what are the advantages of using SAS in clinical data mangement? why should not we use other software products in managing clinical data?

2 Answers   Wockhardt,


Categories