Date: Wed, 7 Jul 2004 08:10:19 -0400
Reply-To: SUBSCRIBE SAS-L Stephane <datametric@CLUB-INTERNET.FR>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: SUBSCRIBE SAS-L Stephane <datametric@CLUB-INTERNET.FR>
Subject: how I format a character string in a put
Content-Type: text/plain; charset=ISO-8859-1
Hello,
I don't find the way to format a character string generated by a put
statement.
In the code below, how the LAST NAME string can appear in BOLD into the
output ??
does the proc template has to be used in this case ?
ods html body='e:\test2.html';
data _null_;
set class;
file print ;
put @ 10 'SEX : ' sex//
@ 25 'LAST NAME :' name;
run;
ods html close;
Stéphane.
|