How will you generate test data with no input data?
No Answer is Posted For this Question
Be the First to Post Answer
Are you sensitive to code walk-throughs peer review or QC review?
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
What is a post baseline?
Explain the message 'Merge has one or more datasets with repeats of by variables'.
what is data governance? : Sas-di
tell me about intnx, intcx functions?
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..
which date function advances a date, time or datetime value by a given interval? : Sas programming
How many data types are there in SAS?
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.