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 LOGICAL VARIABLES in SAS.And how it can be used..Can anyone support..???
Please write codes to merge two datasets and keep every record in the first dataset.
What are symget and symput? : sas-macro
explain the function of substr in sas? : Sas-administrator
Have you been involved in editing the data or writing data queries?
1 Answers BioServe, Oracle, Sasken,
I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?
Describe a time when you were really stuck on a problem and how you solved it?
What are SAS/ACCESS and SAS/CONNECT?
One way of creating a new variable in Macros is by % Let....What is the other way..?
Explain translate function?
If you’re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
what is the basic structure sas administrator? : Sas-administrator