Hello, I hope to find the answers to some questions. Dears, I add images to the tabulate report, but can not change the size of the image, it becomes kind of bigger than I need. How can I change it? the code is below; proc tabulate data=newlib.bookdb;
class publisher section;
classlev publisher / style={ background=yellow font_style=italic postimage=$ggg. width=10 height = 10};
classlev section / s=[ background=green];
var saleprice;
table (section),( publisher)*saleprice={s=[foreground=white background = red]} / box='Main' ;
run; proc format ;
value $ggg
'AMZ Publishers' = '/folders/myfolders/1_uploaded_files/Armenia_template.jpg';
run;
... View more