What is a method to debug and test your SAS program?
No Answer is Posted For this Question
Be the First to Post Answer
Identify statements whose placement in the DATA step is critical.
Tell different ways to create Macrovarible?
3 Answers Accenture, PharmaNet i3,
what are the different ways of merging two datasets.name atleast 4.
What are the prime responsibilities of data integration administrator? : Sas-di
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?
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
Hi, I have one dataset like id date ex: id date 1 13 1 13Oct2011 2 14 2 14Oct2011 3 15 3 15Oct2011 --->this is the current date here i want date format like 13Oct2011,14Oct2011 how we can modify the numeric to date format plz answer.
how can you get the single data set from the library(which has the number of data sets)?
3 Answers Accenture, Deloitte,
What statement do you code to tell SAS that it is to write to an external file? What statement do you code to write the record to the file?
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
In this question, I rename the numeric variable phone to numphone and then try use phone=put(numphone,comma16.) to store the numeric value numphone as a string value in phone. But I get a warning tha numphone already exists and in the data sat phone doesnt exist and numphone is set to missing. Why? data names_and_more; input Name $20. Phone : comma16. Height & $10. Mixed & $8.; Name = tranwrd(Name,' ',' '); rename phone = numphone; phone = put(numphone,comma16.); datalines; Roger Cody 9,087,821,234 5ft. 10in. 50 1/8 Thomas Jefferson 3,158,488,484 6ft. 1in. 23 1/2 Marco Polo 8,001,234,567 5Ft. 6in. 40 Brian Watson 5,183,551,766 5ft. 10in 89 3/4 Michael DeMarco 4,452,322,233 6ft. 76 1/3 ;
What is the one statement to set the criteria of data that can be coded in any step?