Hi, Please code below. The setting for my stored process is streaming. I'm running this through a stored process portlet in portal. data _null_; file _webout; put "<html>"; put "<head>"; put "</head>"; put "<body>"; put '<table border="1" width="100%">'; put '<tr><td width="80%">'; run; %stpbegin; goptions reset=all; goptions cback=white device=activex vsize=3in hsize=10.5in transparency; axis1 label=none; axis2 label=none order=(0 to 100 by 20); pattern1 v=solid color=cx007DC3; /* SELECTION */ pattern2 v=solid color=cxD16600; /* OTHERS */ legend1 label=none; %let save_year = &save_year.; data _null_; ystart = mdy(1,1,&save_year.); yend = intnx('year',ystart,0,'end'); call symput('ystart',ystart); call symput('yend',yend); run; proc gchart data=coll_merged_&_METAUSER.; vbar month / sumvar=collections subgroup=group midpoints=&ystart. to ¥d. by month anno=coll_anno_&_METAUSER maxis=axis1 raxis=axis2 legend=legend1 width=6 ; format month monname3. collections comma25.0; run; quit; %stpend; data _null_; file _webout; put '</td><td>I'll be putting something else here'; put '</td></tr>'; put '</table>'; put "</body>"; put "</html>"; run;
... View more