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
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 |
Answer / sankar
use footnote statement
footnote1'statement';
footnote1'statement';
.
.
.
.
footnote10'statement';
max use 10 footnotes only
Is This Answer Correct ? | 0 Yes | 1 No |
What is the purpose of _character_ and _numeric_?
WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS FUNCTION?
How do you use the do loop if you don’t know how many times you should execute the do loop?
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
what is snowflake schema? : Sas-di
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?
What is the good sas programming practices for processing large data sets?
I have a dataset concat having variable a b & c. How to rename a b to e & f?
what is SAS/Access and SAS/Connect?what are the uses?
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?
what do the pad and dim functions do? : Sas programming