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 do you feel about hardcoding?
what is validvarname and varnum? why we are using this options; explain with a syntax for this options?
List out some key concept of SAS
Which is the Best SAS training Institute in Delhi NCR for SAS certification preparation
How would you code the criteria to restrict the output to be produced?
What are _numeric_ and _character_ and what do they do?
How many data types are there in SAS?
Name and describe three SAS functions that you have used, if any?
What is the purpose of trailing @ and @@? How do you use them?
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
Hot to suppress characters from a given string?
what is sas and what are the functions? : Sas-administrator