When you will use nowd option in report???
Answers were Sorted based on User's Feedback
Answer / kumar
if we run the programme in report procedure we will get results in report window,if we use nowd option we will get reults in output window...
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / vipul bhatnagar
nowd option don't let sas to use window editor.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / suri
it is supressing to print the report in proc report window
example:-proc report data=ds1 nowd;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / le0nn
to open an iterative window; to show the result that u xpected, unlike output window(where result differ seemingly).
| Is This Answer Correct ? | 0 Yes | 2 No |
How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C
if a program has some 1000 or more line and how to know whether the syntax of the particular code is correct without checking it manually
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
what are different type of sas servers ? On which server does the sas code execute ?
What are the difference between sas functions and procedures?
How to convert HTML file into SAS dataset?
What SAS statements would you code to read an external raw data file to a DATA step?
What does a PROC TRANSPOSE do?
What are the main differences between sas versions 8.2, 9.0, 9.1?
How to display duplicate observations in data?
What is highest missing value for numeric?
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.