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


Please Help Members By Posting Answers For Below Questions

What is the role of unrestrictive users? : sas-grid-administration

571


how are numeric and character missing values represented internally? : Sas programming

620


what are all the reports you generated in your recent project?

1683


What is the use of the %include statement?

690


what techniques and/or procs do you use for tables? : Sas programming

573






For what purpose would you use the RETAIN statement?

1045


What are the applications primarily used by business analyst? : Sas-bi

552


Do you need to rearrange the order of the data for the report?

1837


how will you locate the sas platform applications? : Sas-bi

586


For clinical entire study how many tables will create approx?

1520


what is SAS OPTIMIZATION?

1817


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

609


Have you ever used the SAS Debugger?

1207


what is sas and what are the functions? : Sas-administrator

542


How do you control the number of observations and/or variables read or written?

749