If you were told to create many records from one record, show how you would do this using array and with proc transpose?
No Answer is Posted For this Question
Be the First to Post Answer
How to read multiple excel sheets from a single excel file at once????
7 Answers HCL, Verinon Technology Solutions,
I am looking to buy a sas advance book. So any one can guide me that which one i should buy.
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
how sas deals with business intelligence? : Sas-bi
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 it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
In SAS how to read the variable values having different formats. eg:mar99,mar1999 (in a single variable)
8 Answers GSK GlaxoSmithKline,
Can you excute a macro within a macro? Describe.
What do you code to create a macro? : sas-macro
How would you include common or reuse code to be processed along with your statements?
What are the main differences between sas versions 8.2, 9.0, 9.1?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn’t have a value?
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15