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...


how do i read multiple spaces in datasets?
eg: vijaya raghava perumal.I tried with using & but it
workss if its vijaya raghava but not for raghava
perumal.how to do this?

Answers were Sorted based on User's Feedback



how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / dilip

use & and width.

data k;
input s &$22. t $;
cards;
vijaya ragava perumal raj
mohan raj krishna sharma
;
proc print;
run;

Is This Answer Correct ?    11 Yes 0 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / basha

data kk;
input name &$24. name1 $12.;
name3=name||name1;
datalines;
mega star chiranjeevi
;
run;

Is This Answer Correct ?    2 Yes 0 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / chandu

We cant create SAS Dataset name with Spaces. Spaces wont be
allowed in the SAS naming convention.

If Raw data is having Spaces, we need to use Period Input
Style.

Other-wise please give some information for this question
to understand well.

Is This Answer Correct ?    1 Yes 0 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / chandu

using period style input will read ur multiple spaces.

Eg :
Data chandu ;
input name $ 1-22. ;
datalines ;
vijaya raghava perumal
run ;

Is This Answer Correct ?    1 Yes 1 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / sas programmer

HI ALL, IM UR FRIEND , PLEASE READ THE QUESTION ONCE

THE GUEST ASKED THE QUESTION IS
HOW DO I READ MULTIPLE SPACES IN DATASETS NOT IN DATA.

Is This Answer Correct ?    0 Yes 0 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / x

create the dataset using option missing the variable which
requied & output it.

Is This Answer Correct ?    0 Yes 0 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / nani

Whenever SAS encounters a period after a macro variable
reference, the period is treated as a way to end the macro
variable and then the period is thrown away.

Is This Answer Correct ?    0 Yes 6 No

how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but ..

Answer / t

yes, we can!!!!!

see BASE SAS BOOK.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More SAS Interview Questions

which features do you use to check the data validations and errors? : Sas-administrator

0 Answers  


How would you delete duplicate observations?

10 Answers   Accenture,


Describe the function and utility of the most difficult SAS macro that you have written?

0 Answers   Oracle,


What are the data types does SAS contain?

0 Answers  


what is the frontend and backend of sas? Is sas is a progaming langauge or tool? on which langauge sas depends?

3 Answers  


What is the difference between %put and symbolgen? : sas-macro

0 Answers  


Compare sas with other data analytics tools.

0 Answers  


: and & modifiers.

0 Answers   Oracle,


Briefly explain input and put function?

0 Answers  


How the date 04oct1994 is stored in SAS,not only give the answer explain in brief?

5 Answers  


How many ways to overcome a missing values???

0 Answers   HSBC,


Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated

1 Answers  


Categories