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 criteria for adverse events and treatment-emergent adverse events?
Identify statements whose placement in the DATA step is critical.
What are the features of base sas system?
Explain what is SAS informats?
Describe the ways in which you can create a macro variable?
Did you used proc lifetest? when?
2 Answers Accenture, Parexel, Quintiles,
How we can create SAS USER DEFINED CODE?
What do you feel about hardcoding?
What do you know about sas data set?
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
AE datasets names? how many types?
Mention some common errors that are usually committed in sas programming.