i have one dataset
data l;
input name: $ 25;
cards;
manoj is a good boy to krishna
krishna is a god boy to malli
malli is good boy to ramana
ques: here i want "manoj" observations nubers
Answer Posted / raghava
data zoo;
infile datalines;
input Name $ 29.;
datalines;
Manoj is good boy to krishna
Krishna is good boy to malli
malli si good boy to ramana
;
run;
proc print;
run;
data zoo1;
set zoo;
Name=catx('','Manoj');
run;
proc print;
run;
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
what is metadata? : Sas-bi
what is star schema? : Sas-di
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
What is the difference between order and group variable in proc report?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What can be the size of largest dataset in SAS?
What is factor analysis?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
What function CATX syntax does?
what is hash files in sas and why we are using this one in sas?
why is a stop statement needed for the point=option on a set statement? : Sas programming
Difference between sum function and using “+” operator?
What do you understand by the term Normal Distribution?
To what type of programms have you used scratch macros?
Do you need to rearrange the order of the data for the report?