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 can you import .csv file in to sas? : Sas programming
Explain what is the use of proc gplot?
What is the purpose of trailing @ and @@? How do you use them?
where are dashboard components are created and maintained? : Sas-bi
What is the maximum length of the macro variable?
how many display types available in sas bi dashboard? : Sas-bi
what is the primary data source for the wrs? : Sas-bi
explain the proc in sas? : Sas-administrator
name some data transformation used in sas di? : Sas-di
do you prefer proc report or proc tabulate? Why? : Sas programming
Intern stastical programmer written test
explain the main difference between the nodup and nodupkey options? : Sas-administrator
What are the applications primarily used by business analyst? : Sas-bi
What can you learn from the SAS log when debugging?
What function CATX syntax does?