| Date: | Mon, 6 Dec 2004 14:23:19 -0800 |
| Reply-To: | "Yang, Kai" <Kai.Yang@CSHS.ORG> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Yang, Kai" <Kai.Yang@CSHS.ORG> |
| Subject: | put a % mark |
| Content-Type: | text/plain; charset="gb2312" |
Hi, SAS - L
Pls look at the program below. I would like to put ¡°%¡± mark in a txt file.
I got error messages. The SAS consider that I involve a macro, but I did
not.
Is there a way to solve the problem?
data _null_;
set mk_name3;
file "c:\_chk.txt";
put "%chk(ab=" col1 ");";
run;
Thank you
Kai
|