LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2009, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 11 Mar 2009 10:57:43 -0400
Reply-To:   Nathaniel.Wooding@DOM.COM
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Nat Wooding <Nathaniel.Wooding@DOM.COM>
Subject:   Re: Removing the automatic variable names....
In-Reply-To:   <ce1fb7450903110742j3b11c2f0nee6bc1efe4db1ae8@mail.gmail.com>
Content-Type:   text/plain; charset="US-ASCII"

Dear Add

I agree in the approach but I would stick

@1 ' ';

at the end of the put statement. Otherwise there will be a colon in the first position of the line.

By the way, if I do not include the Dear above, SASL rejects the message cause it looks like a listserver command.

Nat

Nat Wooding Environmental Specialist III Dominion, Environmental Biology 4111 Castlewood Rd Richmond, VA 23234 Phone:804-271-5313, Fax: 804-271-2977

"./ ADD NAME=Data _null_;" <iebupdte@GMAIL.C To OM> SAS-L@LISTSERV.UGA.EDU Sent by: "SAS(r) cc Discussion" <SAS-L@LISTSERV.U Subject GA.EDU> Re: Removing the automatic variable names....

03/11/2009 10:42 AM

Please respond to "./ ADD NAME=Data _null_;" <iebupdte@GMAIL.C OM>

filename OUTFILE 'c:\sasdata\partIIIQ2\irtgen\ref.txt' lrecl=32767; data _null_; file outfile dsd dlm='09'x; set sashelp.class; put (_all_)(:); run;

On 3/11/09, Keith Wright <kwright8@att.net> wrote: > Hi, please help, I spent all night searching the Internet and reading books trying to figure out how to remove the variable names. I am not formatting any specific names, when I use the PROC EXPORT below to send my output file to the computer, it automatically gives the following with R1, R2, etc...I do not want these variable names in the output only the values starting on the second row. I would appreciate any assistance, thanks. I only want the 1s and 0s and values of Theta not the variable names... > > R1 R2 R3 R4.......THETA > > 1 0 1 0 ........2.5.6 > > > > PROC EXPORT DATA= &OUT OUTFILE = 'c:\sasdata\partIIIQ2\irtgen\ref.txt' > > DBMS = DLM; > > Keith D Wright > Georgia State Univ. > Graduate Research Assistant (Dr. Chris Oshima) > 770-490-4106 >

CONFIDENTIALITY NOTICE: This electronic message contains information which may be legally confidential and or privileged and does not in any case represent a firm ENERGY COMMODITY bid or offer relating thereto which binds the sender without an additional express written confirmation to that effect. The information is intended solely for the individual or entity named above and access by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution, or use of the contents of this information is prohibited and may be unlawful. If you have received this electronic transmission in error, please reply immediately to the sender that you have received the message in error, and delete it. Thank you.


Back to: Top of message | Previous page | Main SAS-L page