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 (January 2010, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sat, 30 Jan 2010 22:12:06 -0500
Reply-To:   Mark D H Miller <mdhmiller@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Mark D H Miller <mdhmiller@GMAIL.COM>
Subject:   Re: Multiply
Comments:   To: Arthur Tabachneck <art297@NETSCAPE.NET>
In-Reply-To:   <201001302330.o0UBs7YS025691@malibu.cc.uga.edu>
Content-Type:   text/plain; charset=ISO-8859-1; format=flowed

My point was/is that the stated result is simply negation which may or may not require an explicit multiplication operation.

... mark

On 1/30/2010 6:30 PM, Arthur Tabachneck wrote: > Mark, > > Of course it is, but I don't see whatever point you are trying to make. > > Art > -------- > On Sat, 30 Jan 2010 16:20:53 -0500, Mark D H Miller<mdhmiller@GMAIL.COM> > wrote: > > >> Is not x * -1 the same as x = -(x) !!! >> >> ... Mark Miller >> >> On 1/29/2010 6:09 AM, TheSharpOne wrote: >> >>> it won't be pretty but you could try something likethe code below. >>> Just replace WORK with your library name and SAMPLE with your table >>> name: >>> Proc SQL NoPrint; >>> Select Trim(Name)!!' = '!!Trim(Name)!!'*-1;' INTO : varlist >>> separated by ' ' >>> From Dictionary.columns >>> Where libname = 'WORK' AND memname = 'SAMPLE' >>> ; >>> Quit; >>> >>> Data x1; >>> set x; >>> &varlist; >>> Run; >>> >>> >>> >


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