Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

You have a data set of 100 observations,how can you
restrict the output so that the output has only data from
row no. 10 to row no. 20

Answer Posted / monika

Data test;
input a 8. @@;
datalines;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;
run;

Data Result;
Set test(firstobs=10 obs=20);
Run;

Proc print data = Result;
Run;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what do the mod and int function do? What do the pad and dim functions do? : Sas programming

1094


How to sort in descending order?

1196


what is metadata? : Sas-bi

966


what are validation tools that are used in sas? : Sas-administrator

1000


what are some good sas programming practices for processing very large data sets? : Sas programming

872


Give an example where SAS fails to convert character value to numeric value automatically?

1026


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

978


What are the table names in oracle database...?

2687


Explain by-group processing?

946


What do the PUT and INPUT functions do?

1268


Explain the special input delimiters used in sas programming.

953


Name few SAS functions?

1038


What are the data types does SAS contain?

1051


if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation

1549


what are input dataset and output dataset options? : Sas programming

1022