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 is the purpose of _character_ and _numeric_?

0 Answers  


WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS FUNCTION?

3 Answers   IBM, Zensar,


How do you use the do loop if you don’t know how many times you should execute the do loop?

0 Answers  


how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming

0 Answers  


what is snowflake schema? : Sas-di

0 Answers  






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?

4 Answers  


What is the good sas programming practices for processing large data sets?

0 Answers  


I have a dataset concat having variable a b & c. How to rename a b to e & f?

0 Answers  


what is SAS/Access and SAS/Connect?what are the uses?

3 Answers  


How to read multiple excel sheets from a single excel file at once????

7 Answers   HCL, Verinon Technology Solutions,


who is the best SAS clinical Trainer in Hyderabad?

3 Answers  


what do the pad and dim functions do? : Sas programming

0 Answers  


Categories