In the attached excel spreadsheet I've store a path to a checkbox image ie
"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";
Basically Tabel3 will contain the above information. I expect the below on the PDF. This doesn't appear to be a syntax issue,
but i could be mistaken. Any suggestions would be appreciated.
What I expect is:
checkbox image Normal
checkbox image Abnormal
checkbox image Normal
etc.
What I'm gettting is:
"Normal";
"Abnormal_____";
etc.
The SAS CODE:
ods region x=5.0in y=1.5in;
proc report data = pg2tabl3 out=testfile nowindows nowd
style(report)=[rules=none frame=void cellspacing=0 cellpadding=1pt just=l fontsize=3pt]
style(header)=[background=white font_weight=bold just=l font_size=5pt];
column table3;
define table3 / '* (Mandatory - Complete at least one system)' style(column)=[cellwidth=3.0in] ;
rbreak after / summarize;
compute table3;
if table3 ^= ' ' then
call define (_row_, 'Style', 'style= [font_size=9pt vjust=middle cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
if table3 ^= ' ' then
call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');
endcomp;
Run;
... View more