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

i have a null dataset with 10 variables; i want to print only
name of the varibales in log window and also output window.how
can we do this one?

Answer Posted / sas user

* To print in log window
data _null_;
put x1= \
x2= \
x10= \;
run;

* To print on output window:

data _null_;
file print;
put x1= \
x2= \
x10= \;
run;

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different versions of sas that you have used until now? : sas-grid-administration

1389


what is study design in while working with SAS? what are screening variables in SAS?

2270


What are the statements that are executed only?

1205


what is metadata? : Sas-bi

1072


What is the order of application for output data set options, input data set options and SAS statements?

1615


what is enterprise guide? What is the use of it? : Sas programming

1065


Are you involved in writing the inferential analysis plan? Tables specfications?

2261


how does sas handle missing values in sort order? : Sas programming

978


Explain why double trailing @@ is used in input statement?

1114


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

2359


Tell me more about the parameters in macro? : sas-macro

1089


describe how to adjust the performance of data integrator? : Sas-di

1063


How long can a macro variable be? A token? : sas-macro

1256


What is the difference between nodupkey and nodup options?

1078


Describe the ways in which you can create macro variables?

1249