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 (November 2008, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 7 Nov 2008 10:37:02 -0500
Reply-To:     Jeff <zhujp98@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Jeff <zhujp98@GMAIL.COM>
Subject:      how to pass this string to macro?
Content-Type: text/plain; charset=ISO-8859-1

%Macro calculateRFs(codetypecd, id, valueString);

proc sql;

select *

from a

where a.str in &string;

%mend calculateRFs; %calculateRFs(1, 1, ((*'111'*,*'222'*,*'3333'*));));

I want to pass string (*'111'*,*'222'*,*'3333') or **'111'*,*'222'*,*'3333' together as a stirng to the macro. How can I do that?* *Thanks.* *Jeff*


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